body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(135deg, #1a174d 0%, #2d1b69 50%, #4c1d95 100%);
  color: #f5f6fa;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(88, 28, 135, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* --- NAVIGATION BAR --- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3.5rem 1.5rem 3.5rem;
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 10;
  border-radius: 1.5rem 1.5rem 0 0;
}
.logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- NEW SECTIONS STYLES --- */

/* Services Overview Section */
.services-overview {
  padding: 6rem 4vw;
  background: linear-gradient(
    135deg,
    rgba(26, 23, 77, 0.8) 0%,
    rgba(45, 27, 105, 0.8) 100%
  );
  position: relative;
  z-index: 2;
}

.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(88, 28, 135, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #00ffe7, #a084fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffe7, #a084fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 255, 231, 0.2);
  border-color: rgba(0, 255, 231, 0.3);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.service-link {
  color: #00ffe7;
  text-decoration: none;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-link:hover {
  color: #a084fa;
  transform: translateX(5px);
}

/* Company Highlights Section */
.highlights-section {
  padding: 6rem 4vw;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 105, 0.8) 0%,
    rgba(76, 29, 149, 0.8) 100%
  );
  position: relative;
  z-index: 2;
}

.highlights-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.highlights-text h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #00ffe7, #a084fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.highlight-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-point:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 231, 0.3);
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-point h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.highlight-point p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
}

.highlights-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 255, 231, 0.3);
  transform: scale(1.05);
}

.stat-number {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ffe7;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Call to Action Section */
.cta-section {
  padding: 6rem 4vw;
  background: linear-gradient(
    135deg,
    rgba(76, 29, 149, 0.8) 0%,
    rgba(26, 23, 77, 0.8) 100%
  );
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00ffe7, #a084fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
}

.cta-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #00ffe7, #a084fa);
  color: #1a174d;
}

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

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: #1a174d;
  transform: translateY(-3px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .services-overview,
  .highlights-section,
  .cta-section {
    padding: 4rem 2vw;
  }

  .section-title,
  .cta-content h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlights-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlights-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  .stat-item {
    flex: 1;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 2rem 1.5rem;
  }

  .highlight-point {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .highlights-stats {
    flex-direction: column;
  }

  .stat-item {
    margin-bottom: 1rem;
  }
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
}
.nav-links a:hover {
  color: #00ffe7;
}
.contact-btn {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 900;
  margin-left: 1.2rem;
  transition: background 0.2s, color 0.2s, border 0.2s;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
}
.contact-btn:hover {
  background: #fff;
  color: #4c1d95 !important;
  border: 2px solid #4c1d95;
}
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 20;
}
.hamburger-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.hamburger-icon span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  display: flex;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.mobile-nav-links a {
  color: #fff;
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover {
  color: #00ffe7;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .mobile-nav-overlay {
    display: none;
  }
}
@media (min-width: 901px) {
  .mobile-nav-overlay {
    display: none !important;
  }
  .hamburger-menu {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
  }
}
/* --- END NAVIGATION BAR --- */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem 4vw 4.5rem 4vw;
  margin: 0 auto;
  max-width: 1400px;
  min-height: 70vh;
  position: relative;
  z-index: 2;
  background: none;
}
.hero-content {
  flex: 1 1 0;
  z-index: 2;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 0 0 0 0;
}

.hero-image {
  position: relative;
  flex: 0 0 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  margin-right: 0;
  width: 520px;
  min-width: 320px;
}

.hero-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 0 60px 0 #a084fa44, 0 0 0 8px #a084fa55, 0 0 32px 8px #8b5cf6aa;
  outline: 3px solid #a084fa;
  outline-offset: 0px;
  border-radius: 24px;
  background: none !important;
  filter: none;
  position: relative;
  z-index: 2;
  object-fit: contain;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}

.hero-glow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse at 70% 50%,
    #a084fa 0%,
    #4c1d95 60%,
    transparent 100%
  );
  filter: blur(60px);
}

.hero-image img::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7, #c084fc, #8b5cf6);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.hero-image img:hover::before {
  opacity: 0.3;
}

.hero-image img:hover {
  transform: scale(1.02) rotateY(2deg);
  box-shadow: 0 12px 64px 0 rgba(139, 92, 246, 0.4),
    0 0 0 12px rgba(139, 92, 246, 0.2), 0 0 80px 30px rgba(139, 92, 246, 0.3),
    0 0 120px 50px rgba(59, 130, 246, 0.2);
  filter: brightness(1.2) contrast(1.1) saturate(1.2);
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.image-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(139, 92, 246, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-arrow:hover {
  background: rgba(139, 92, 246, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0 20px #8b5cf6;
}

.nav-arrow:hover::before {
  left: 100%;
}

.prev-arrow {
  opacity: 0.6;
}

.next-arrow {
  background: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 15px #8b5cf6;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 15px #8b5cf6;
  }
  50% {
    box-shadow: 0 0 25px #8b5cf6, 0 0 35px #a855f7;
  }
}
.intro-text {
  color: #b3b3e6;
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  font-family: "Inter", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.9;
}
.main-title {
  font-family: "Orbitron", "Inter", Arial, sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 1.5rem 0;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2), 0 0 60px rgba(255, 255, 255, 0.1);
  animation: focusIn 1.2s ease-out, glowPulse 3s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes focusIn {
  0% {
    filter: blur(20px);
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    filter: blur(10px);
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25),
      0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.2),
      0 0 60px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25),
      0 0 30px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.3),
      0 0 70px rgba(255, 255, 255, 0.2), 0 0 90px rgba(255, 255, 255, 0.1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow-text {
  font-size: 4.5rem;
  color: #a084fa;
  text-shadow: 0 0 24px #a084fa, 0 0 40px #8b5cf6;
  font-weight: 900;
  display: inline-block;
}

.glow-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #8b5cf6, #a855f7, #c084fc, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  animation: gradientFlow 3s ease infinite reverse;
  z-index: -1;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px #8b5cf6, 0 0 40px #8b5cf6, 0 0 60px #8b5cf6;
  }
  to {
    text-shadow: 0 0 30px #8b5cf6, 0 0 50px #8b5cf6, 0 0 70px #8b5cf6,
      0 0 90px #a855f7;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  top: 40%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  top: 30%;
  left: 90%;
  animation-delay: 4s;
  animation-duration: 6s;
}

.particle:nth-child(6) {
  top: 70%;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 8s;
}

.particle:nth-child(7) {
  top: 10%;
  left: 60%;
  animation-delay: 6s;
  animation-duration: 7s;
}

.particle:nth-child(8) {
  top: 90%;
  left: 40%;
  animation-delay: 7s;
  animation-duration: 9s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-20px) translateX(15px);
    opacity: 0.9;
  }
}
.subtitle {
  color: #b3b3e6;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}
.testimonial-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.avatars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.testimonial-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

.additional-text {
  color: #cbd5e1;
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
}
.highlight-box {
  background: rgba(168, 85, 247, 0.13);
  border-left: 4px solid #a855f7;
  border-radius: 8px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 22px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px #a855f722;
}
.progress-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Orbitron", "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}
.progress-bar {
  flex: 1 1 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 8px;
}
.progress {
  width: 25%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 32px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeInUp 0.8s ease-out;
  opacity: 1;
}

.cta-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.05s ease;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cta-btn:hover {
  background: #fff;
  color: #4c1d95;
  transform: translateY(-2px);
}

.below-hero {
  background: transparent;
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .hero-section {
    max-width: 1600px;
    padding: 120px 0 120px 0;
  }
  .hero-image {
    flex: 0 0 700px;
    width: 700px;
  }
  .hero-image img {
    max-width: 700px;
  }
  .hero-glow {
    width: 700px;
    height: 700px;
  }
  .main-title {
    font-size: 5.5rem;
  }
  .glow-text {
    font-size: 6.2rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .hero-section {
    max-width: 1400px;
    padding: 100px 0 100px 0;
  }
  .hero-image {
    flex: 0 0 600px;
    width: 600px;
  }
  .hero-image img {
    max-width: 600px;
  }
  .hero-glow {
    width: 600px;
    height: 600px;
  }
}

/* Laptop (1000px - 1199px) */
@media (max-width: 1199px) and (min-width: 1000px) {
  .hero-section {
    max-width: 1200px;
    padding: 80px 0 80px 0;
  }
  .hero-image {
    flex: 0 0 500px;
    width: 500px;
  }
  .hero-image img {
    max-width: 500px;
  }
  .hero-glow {
    width: 500px;
    height: 500px;
  }
  .main-title {
    font-size: 4rem;
  }
  .glow-text {
    font-size: 4.7rem;
  }
}

/* Tablet Landscape (768px - 999px) */
@media (max-width: 999px) and (min-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 0 60px 0;
    max-width: 95vw;
  }
  .hero-content {
    padding: 0 0 0 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-image {
    margin: 40px 0 0 0;
    justify-content: center;
    flex: 0 0 auto;
    width: 400px;
  }
  .hero-image img {
    max-width: 400px;
    width: 400px;
  }
  .hero-glow {
    width: 400px;
    height: 400px;
  }
  .main-title {
    font-size: 3.5rem;
  }
  .glow-text {
    font-size: 4.2rem;
  }
  .subtitle {
    max-width: 600px;
  }
  .additional-text {
    max-width: 600px;
  }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 0 40px 0;
    max-width: 95vw;
  }
  .hero-content {
    padding: 0 0 0 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero-image {
    margin: 30px 0 0 0;
    justify-content: center;
    flex: 0 0 auto;
    width: 350px;
  }
  .hero-image img {
    max-width: 350px;
    width: 350px;
  }
  .hero-glow {
    width: 350px;
    height: 350px;
  }
  .main-title {
    font-size: 3rem;
  }
  .glow-text {
    font-size: 3.7rem;
  }
  .subtitle {
    max-width: 500px;
  }
  .additional-text {
    max-width: 500px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
}
/* Mobile Large (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 20px 0 20px 0;
    max-width: 95vw;
    gap: 20px;
  }
  .hero-content {
    padding: 0 0 0 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-image {
    margin: 0;
    justify-content: center;
    flex: 0 0 auto;
    width: 280px;
    order: 2;
  }
  .hero-image img {
    max-width: 280px;
    width: 280px;
  }
  .hero-glow {
    width: 280px;
    height: 280px;
  }
  .main-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .glow-text {
    font-size: 3.2rem;
  }
  .subtitle {
    max-width: 400px;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .additional-text {
    max-width: 400px;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .testimonial-row {
    margin-bottom: 15px;
  }
  .progress-row {
    margin-top: 15px;
  }
  .navbar {
    padding: 12px 16px 8px 16px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 479px) and (min-width: 375px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 15px 0 15px 0;
    max-width: 95vw;
    gap: 15px;
  }
  .hero-content {
    padding: 0 0 0 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-image {
    margin: 0;
    justify-content: center;
    flex: 0 0 auto;
    width: 240px;
    order: 2;
  }
  .hero-image img {
    max-width: 240px;
    width: 240px;
  }
  .hero-glow {
    width: 240px;
    height: 240px;
  }
  .main-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .glow-text {
    font-size: 2.9rem;
  }
  .subtitle {
    max-width: 350px;
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .additional-text {
    max-width: 350px;
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .testimonial-row {
    margin-bottom: 12px;
  }
  .progress-row {
    margin-top: 12px;
  }
  .navbar {
    padding: 10px 12px 6px 12px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .logo {
    font-size: 1.4rem;
  }
}
/* Mobile Small (320px - 374px) */
@media (max-width: 374px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
    padding: 10px 0 10px 0;
    max-width: 95vw;
    gap: 10px;
  }
  .hero-content {
    padding: 0 0 0 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-image {
    margin: 0;
    justify-content: center;
    flex: 0 0 auto;
    width: 200px;
    order: 2;
  }
  .hero-image img {
    max-width: 200px;
    width: 200px;
  }
  .hero-glow {
    width: 200px;
    height: 200px;
  }
  .main-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .glow-text {
    font-size: 2.5rem;
  }
  .subtitle {
    max-width: 300px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .additional-text {
    max-width: 300px;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  .testimonial-row {
    margin-bottom: 10px;
  }
  .progress-row {
    margin-top: 10px;
  }
  .navbar {
    flex-direction: column;
    gap: 12px;
    padding: 8px 8px 4px 8px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-menu {
    display: block;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .intro-text {
    font-size: 0.8rem;
  }
  .testimonial-text {
    font-size: 0.8rem;
  }
  .avatars img {
    width: 28px;
    height: 28px;
  }
}

/* --- HERO SECTION: KEEP IMAGE ON RIGHT FOR MOBILE --- */
@media (max-width: 999px) {
  .hero-section {
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2.5rem 2vw 2.5rem 2vw;
    max-width: 100vw;
    gap: 2vw;
    min-height: 100vh;
  }
  .hero-content {
    max-width: 54vw;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.2rem;
  }
  .main-title {
    font-size: 2.8rem;
    margin: 0 0 1.2rem 0;
    line-height: 1.05;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    white-space: normal;
  }
  .glow-text {
    font-size: 2.9rem;
    color: #a084fa;
    text-shadow: 0 0 24px #a084fa, 0 0 40px #8b5cf6;
    font-weight: 900;
    display: inline-block;
  }
  .subtitle {
    color: #b3b3e6;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
  }
  .testimonial-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .avatars img {
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
  }
  .testimonial-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    opacity: 1;
    line-height: 1.4;
  }
  .highlight-box {
    background: rgba(168, 85, 247, 0.13);
    border-left: 4px solid #a855f7;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 18px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 16px #a855f722;
  }
  .progress-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    font-family: "Orbitron", "Inter", Arial, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
  }
  .progress-bar {
    flex: 1 1 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 8px;
  }
  .progress {
    width: 25%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
  }
  .hero-image {
    width: 44vw;
    min-width: 120px;
    max-width: 320px;
    margin: 0;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
    height: 100%;
  }
  .hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
    filter: none;
    position: relative;
    z-index: 2;
    object-fit: contain;
  }
  .hero-glow {
    width: 44vw;
    height: 44vw;
    min-width: 120px;
    min-height: 120px;
    max-width: 320px;
    max-height: 320px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
      ellipse at 70% 50%,
      #a084fa 0%,
      #4c1d95 60%,
      transparent 100%
    );
    filter: blur(60px);
  }
}
@media (max-width: 599px) {
  .hero-content {
    max-width: 54vw;
    padding: 0 0 0 2vw;
    gap: 0.8rem;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .glow-text {
    font-size: 1.7rem;
  }
  .avatars img {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .highlight-box {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .progress-row {
    font-size: 1.1rem;
  }
  .hero-image,
  .hero-glow {
    width: 46vw;
    min-width: 80px;
    max-width: 120px;
    height: auto;
  }
}
@media (max-width: 374px) {
  .hero-content {
    max-width: 50vw;
    padding: 0 0 0 1vw;
    gap: 0.5rem;
  }
  .main-title {
    font-size: 1.1rem;
  }
  .glow-text {
    font-size: 1.2rem;
  }
  .avatars img {
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
  }
  .hero-image,
  .hero-glow {
    width: 50vw;
    min-width: 50px;
    max-width: 80px;
    height: auto;
  }
}
/* --- END HERO SECTION OVERRIDE --- */

@media (max-width: 999px) {
  .hero-content > :not(.main-title) {
    display: none !important;
  }
  .hero-content {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
  }
  .main-title {
    text-align: left;
    width: 100%;
    margin: 0;
    font-size: 2.2rem;
    line-height: 1.1;
  }
}

@media (max-width: 999px) {
  .main-title,
  .glow-text {
    white-space: nowrap;
    word-break: normal;
    hyphens: none;
    overflow-wrap: normal;
    font-size: clamp(1.1rem, 7vw, 2.2rem);
  }
}
@media (max-width: 599px) {
  .main-title {
    font-size: clamp(1rem, 6vw, 2rem);
  }
  .glow-text {
    font-size: clamp(1.1rem, 7vw, 2.2rem);
  }
}
@media (max-width: 374px) {
  .main-title {
    font-size: clamp(0.8rem, 5vw, 1.3rem);
  }
  .glow-text {
    font-size: clamp(0.9rem, 5vw, 1.5rem);
  }
}

/* --- PREMIUM MOBILE HERO SECTION --- */
@media (max-width: 700px) {
  body {
    background: linear-gradient(135deg, #2d1b69 0%, #4c1d95 100%);
  }
  .premium-mobile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: none;
  }
  /* Logo Row */
  .mobile-logo-row {
    position: absolute;
    top: 2.2rem;
    left: 1.2rem;
    right: 1.2rem;
    display: flex;
    align-items: center;
    z-index: 10;
    gap: 0.7rem;
  }
  .mobile-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    object-fit: cover;
    box-shadow: 0 2px 12px #a084fa44;
  }
  .mobile-brand {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    margin-left: 0.3rem;
  }
  .brand-tech {
    color: #a084fa;
    font-weight: 900;
  }
  .hamburger-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    z-index: 20;
  }
  .hamburger-icon {
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
  }
  .hamburger-icon span {
    display: block;
    height: 0.3rem;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  /* Hero Content */
  .mobile-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6.5rem 0 0 1.2rem;
    width: 60vw;
    min-width: 0;
    z-index: 2;
  }
  .main-title {
    font-family: "Orbitron", "Inter", Arial, sans-serif;
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 1.1rem 0;
    line-height: 1.05;
    text-shadow: 0 2px 8px #a084fa88, 0 0 24px #a084fa44;
  }
  .neon-glow {
    text-shadow: 0 0 16px #a084fa, 0 0 32px #a084fa, 0 0 48px #a084fa44;
  }
  .glow-text {
    font-size: clamp(2.2rem, 8vw, 3.1rem);
    color: #a084fa;
    text-shadow: 0 0 24px #a084fa, 0 0 40px #8b5cf6;
    font-weight: 900;
    display: inline-block;
  }
  .mobile-subtitle {
    color: #b3b3e6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
  }
  /* Testimonial Row */
  .testimonial-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
  }
  .avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 8px #a084fa33;
  }
  .testimonial-text {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.3;
    max-width: 50vw;
  }
  /* Stat Row */
  .stat-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    font-family: "Orbitron", "Inter", Arial, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.04em;
  }
  .stat {
    font-size: clamp(1.2rem, 6vw, 2.1rem);
    color: #fff;
    text-shadow: 0 2px 8px #a084fa88;
  }
  /* Helmet Image */
  .mobile-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48vw;
    min-width: 160px;
    max-width: 60vw;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
  }
  .helmet-img {
    width: 100%;
    height: auto;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 0 0 0 80px;
    box-shadow: 0 0 80px 0 #a084fa44, 0 0 120px 0 #4c1d9533;
    background: none;
    filter: none;
    z-index: 2;
    pointer-events: none;
  }
  .mobile-hero-glow {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      ellipse at 80% 60%,
      #a084fa55 0%,
      transparent 80%
    );
    filter: blur(32px);
    z-index: 1;
    pointer-events: none;
  }
}
/* --- END PREMIUM MOBILE HERO SECTION --- */

/* --- Responsive Hero Section Visibility --- */
@media (max-width: 700px) {
  .desktop-hero {
    display: none !important;
  }
  .premium-mobile {
    display: flex !important;
  }
}
@media (min-width: 701px) {
  .desktop-hero {
    display: flex !important;
  }
  .premium-mobile {
    display: none !important;
  }
}
/* --- End Responsive Hero Section Visibility --- */

/* Company Brand (Desktop) */
.company-brand.desktop-only {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.desktop-logo-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a259ff;
  background: #fff;
  box-shadow: 0 0 12px 0 #a259ff44;
}
.desktop-brand-text {
  font-family: "Orbitron", "Inter", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  font-style: normal;
  margin-left: 0.25rem;
}
@media (max-width: 900px) {
  .company-brand.desktop-only {
    display: none;
  }
}
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: transparent;
  z-index: 10;
  padding: 0 2rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

@media (min-width: 1000px) {
  .desktop-hero.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 4vh;
    padding-bottom: 0;
    gap: 2.25rem;
    overflow: hidden;
    position: relative;
  }
  .desktop-hero .hero-content {
    width: 55%;
    min-width: 380px;
    max-width: 900px;
    flex: 0 1 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    top: 0;
    transform: none;
  }
  .desktop-hero .main-title {
    font-size: 4.8rem;
    line-height: 1.12;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    word-break: break-word;
    font-weight: 900;
    width: 100%;
    text-align: left;
  }
  .desktop-hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 60ch;
    color: #e2e8f0;
    width: 100%;
    text-align: left;
  }
  .desktop-hero .cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    gap: 2rem;
    margin-bottom: 0;
    width: 100%;
  }
  .desktop-hero .cta-btn {
    min-width: 200px;
    font-size: 1.18rem;
    padding: 1rem 2rem;
    border-radius: 2.2rem;
  }
  .desktop-hero .hero-image {
    position: relative;
    width: 45%;
    min-width: 260px;
    max-width: 600px;
    flex: 0 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
  }
  .desktop-hero .helmet-bg-blend {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
      ellipse at 50% 50%,
      #a084fa99 0%,
      #4c1d9580 60%,
      transparent 100%
    );
    opacity: 0.5;
    filter: blur(120px);
    animation: helmetGlowPulse 6s ease-in-out infinite alternate;
  }
  .desktop-hero .desktop-helmet-img {
    width: 104%;
    max-width: 450px;
    min-width: 180px;
    height: auto;
    display: block;
    margin-bottom: 0;
    object-fit: contain;
    align-self: center;
    z-index: 2;
    position: relative;
    left: -10px;
    top: 0;
    filter: brightness(0.97) saturate(1.08) drop-shadow(-18px 0 36px #a084fa33)
      drop-shadow(0 12px 48px #2b0b6580);
    mask-image: linear-gradient(to bottom, #fff 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #fff 65%, transparent 100%);
    box-shadow: 0 16px 64px 0 #2b0b6580, -32px 0 64px -16px #a084fa44;
    background: none;
  }
  .desktop-hero .helmet-inner-shadow {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(60, 20, 150, 0.18) 0%,
      transparent 100%
    );
    filter: blur(10px);
    z-index: 3;
    pointer-events: none;
    border-radius: 32px 0 0 32px;
    display: block;
  }
  .desktop-hero .helmet-color-wash {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 20, 150, 0.2);
    mix-blend-mode: soft-light;
    z-index: 4;
    pointer-events: none;
    border-radius: 32px;
    display: block;
  }
  @keyframes helmetGlowPulse {
    0% {
      opacity: 0.45;
      filter: blur(110px);
    }
    100% {
      opacity: 0.6;
      filter: blur(140px);
    }
  }
  /* Optional: floating particles for visual connection */
  .hero-particles {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: visible;
  }
  .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #a084fa 0%, #4c1d95 100%);
    opacity: 0.18;
    filter: blur(2px);
    animation: heroParticleFloat 8s infinite alternate ease-in-out;
  }
  .hero-particle.p1 {
    width: 32px;
    height: 32px;
    left: 30%;
    top: 38%;
    animation-delay: 0s;
  }
  .hero-particle.p2 {
    width: 18px;
    height: 18px;
    left: 60%;
    top: 44%;
    animation-delay: 2s;
  }
  .hero-particle.p3 {
    width: 24px;
    height: 24px;
    left: 48%;
    top: 60%;
    animation-delay: 4s;
  }
  .hero-particle.p4 {
    width: 14px;
    height: 14px;
    left: 40%;
    top: 52%;
    animation-delay: 1s;
  }
  @keyframes heroParticleFloat {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.18;
    }
    100% {
      transform: translateY(-18px) scale(1.12);
      opacity: 0.28;
    }
  }
}
@media (max-width: 1200px) and (min-width: 1000px) {
  .desktop-hero .main-title {
    font-size: 3.2rem;
  }
  .desktop-hero .hero-content {
    min-width: 320px;
  }
  .desktop-hero .hero-image {
    min-width: 200px;
  }
}

@media (max-width: 999px) {
  .desktop-hero.hero-section {
    flex-direction: column;
    min-height: unset;
    padding-top: 3vh;
    padding-bottom: 2vh;
    gap: 2rem;
  }
  .desktop-hero .hero-content,
  .desktop-hero .hero-image {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    flex: unset;
    align-items: center;
    justify-content: center;
  }
  .desktop-hero .hero-image {
    margin-top: 2.5rem;
  }
  .desktop-hero .main-title {
    font-size: 2.1rem;
    text-align: center;
  }
  .desktop-hero .subtitle {
    font-size: 1rem;
    text-align: center;
    max-width: 95%;
  }
  .desktop-hero .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.2rem;
  }
  .desktop-hero .hero-image {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    flex: unset;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
    z-index: 2;
  }
  .desktop-hero .helmet-bg-blend {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 150%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
      ellipse at 50% 50%,
      #a084fa99 0%,
      #4c1d9580 60%,
      transparent 100%
    );
    opacity: 0.5;
    filter: blur(100px);
    animation: helmetGlowPulse 6s ease-in-out infinite alternate;
  }
  .desktop-hero .desktop-helmet-img {
    width: 98%;
    max-width: 260px;
    min-width: 100px;
    height: auto;
    display: block;
    margin-bottom: 0;
    object-fit: contain;
    align-self: flex-end;
    z-index: 2;
    position: relative;
    left: 0;
    filter: brightness(0.97) saturate(1.08) drop-shadow(-10px 0 24px #a084fa33)
      drop-shadow(0 8px 32px #2b0b6580);
    mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
    box-shadow: 0 8px 32px 0 #2b0b6580, -16px 0 32px -8px #a084fa44;
    background: none;
  }
}

/* Mobile: helmet as blurred/dimmed background behind text */
@media (max-width: 700px) {
  .desktop-hero .hero-image {
    display: none !important;
  }
  .premium-mobile .mobile-hero-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  .premium-mobile .helmet-img {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.7) saturate(1.1);
    opacity: 0.7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #fff 70%, transparent 100%);
  }
  .premium-mobile .mobile-hero-glow {
    display: none;
  }
}

/* Redesigned Services Section for STUX Technologies */
.redesigned-services {
  background: linear-gradient(135deg, #18132a 0%, #241a3a 100%);
  padding: 6rem 0 6rem 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 48px 0 #000a 0.5;
}
.redesigned-services .section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(90deg, #00ffe7, #a084fa 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
}
.redesigned-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin: 0 auto;
  max-width: 1200px;
}
.redesigned-services .service-card {
  background: linear-gradient(
    120deg,
    rgba(0, 255, 231, 0.07) 0%,
    rgba(160, 132, 250, 0.09) 100%
  );
  border: 1.5px solid rgba(0, 255, 231, 0.13);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px 0 #00ffe733, 0 1.5px 0 0 #a084fa22;
  padding: 3rem 2.2rem 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.redesigned-services .service-card:hover {
  box-shadow: 0 8px 48px 0 #00ffe799, 0 0 0 4px #a084fa44;
  border-color: #00ffe7;
  transform: translateY(-6px) scale(1.025);
}
.redesigned-services .service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00ffe7 0%, #a084fa 100%);
  border-radius: 50%;
  box-shadow: 0 0 24px #00ffe755, 0 0 32px #a084fa33;
  padding: 0.5rem;
}
.redesigned-services .service-card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #00ffe7, #a084fa 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.redesigned-services .service-desc {
  font-size: 1.08rem;
  color: #e2e8f0;
  margin-bottom: 1.2rem;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}
.redesigned-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Inter", Arial, sans-serif;
}
.redesigned-services .service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: #b3b3e6;
  font-size: 1.01rem;
  line-height: 1.5;
}
.redesigned-services .service-features li:before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffe7 0%, #a084fa 100%);
  box-shadow: 0 0 8px #00ffe7aa;
}
@media (max-width: 900px) {
  .redesigned-services {
    padding: 3.5rem 0 3.5rem 0;
  }
  .redesigned-services .services-grid {
    gap: 2rem;
    max-width: 98vw;
  }
  .redesigned-services .service-card {
    padding: 2.2rem 1.2rem 2rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .redesigned-services .section-title {
    font-size: 1.5rem;
    margin-bottom: 2.2rem;
  }
  .redesigned-services .service-card h3 {
    font-size: 1.1rem;
  }
  .redesigned-services .service-desc {
    font-size: 0.98rem;
  }
  .redesigned-services .service-features li {
    font-size: 0.93rem;
  }
}
.redesigned-services .service-link.cta-btn {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #00ffe7;
  background: linear-gradient(90deg, #00ffe7 0%, #a084fa 100%);
  background-size: 200% 200%;
  background-position: 0 100%;
  border: none;
  border-radius: 2rem;
  padding: 0.95rem 2.2rem;
  box-shadow: 0 0 24px #00ffe755, 0 0 32px #a084fa33;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-position 0.3s, color 0.3s, box-shadow 0.3s,
    transform 0.2s;
  position: relative;
  z-index: 2;
}
.redesigned-services .service-link.cta-btn:hover {
  background-position: 100% 0;
  color: #fff;
  box-shadow: 0 0 40px #00ffe7cc, 0 0 64px #a084fa55;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .redesigned-services .service-link.cta-btn {
    font-size: 0.98rem;
    padding: 0.85rem 1.5rem;
    margin-top: 1rem;
  }
}

/* SaaS-Style Services Section */
.saas-services {
  background: linear-gradient(135deg, #f6f7fa 0%, #e9ecf3 100%);
  padding: 5rem 0 5rem 0;
  position: relative;
  z-index: 2;
}
.saas-services .section-title {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #23243a;
  letter-spacing: 0.03em;
}
.saas-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin: 0 auto;
  max-width: 1100px;
}
.saas-services .service-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px 0 #bfc7d6cc, 0 1.5px 0 0 #e9ecf3;
  padding: 2.5rem 1.7rem 2.2rem 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid #e3e7ef;
}
.saas-services .service-card:hover {
  box-shadow: 0 8px 32px 0 #bfc7d6ee, 0 0 0 2px #b3b8c6;
  border-color: #b3b8c6;
  transform: translateY(-3px) scale(1.012);
}
.saas-services .service-icon {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 38px;
  height: 38px;
  background: #f2f4f8;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px #e9ecf3cc;
  padding: 0.4rem;
}
.saas-services .service-card h3 {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #23243a;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.saas-services .service-desc {
  font-size: 1.01rem;
  color: #3a3a4a;
  margin-bottom: 1.1rem;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}
.saas-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
}
.saas-services .service-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: #4a4a5a;
  font-size: 0.98rem;
  line-height: 1.5;
}
.saas-services .service-features li:before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #bfc7d6;
}
.saas-services .saas-btn {
  display: block;
  margin: 1.2rem auto 0 auto;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #fff;
  background: #3a3a4a;
  border: none;
  border-radius: 0.7rem;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 2px 8px #e9ecf3cc;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
}
.saas-services .saas-btn:hover {
  background: #23243a;
  color: #e9ecf3;
  box-shadow: 0 4px 16px #bfc7d6cc;
  transform: translateY(-1px) scale(1.03);
}
@media (max-width: 900px) {
  .saas-services {
    padding: 2.5rem 0 2.5rem 0;
  }
  .saas-services .services-grid {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .saas-services .service-card {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .saas-services .section-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .saas-services .service-card h3 {
    font-size: 1rem;
  }
  .saas-services .service-desc {
    font-size: 0.93rem;
  }
  .saas-services .service-features li {
    font-size: 0.91rem;
  }
  .saas-services .saas-btn {
    font-size: 0.93rem;
    padding: 0.7rem 1.2rem;
    margin-top: 0.7rem;
  }
}

/* Glassy Skyscraper Services Section */
.glassy-services {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
}
.glassy-services .services-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("/assets/illuminated-buildings-night.jpg") center center/cover no-repeat
      fixed;
}
.glassy-services .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 4rem 1.5rem;
}
.glassy-services .section-title {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}
.glassy-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}
.glassy-services .service-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 2.2rem 1.7rem 2.2rem 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.glassy-services .service-card:hover {
  box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px) scale(1.012);
}
.glassy-services .icon-heading-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.1rem;
  width: 100%;
}
.glassy-services .icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.glassy-services .icon-circle svg {
  display: block;
}
.glassy-services .icon-heading-row h3 {
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.glassy-services .service-desc {
  font-size: 1.05rem;
  color: #f3f3f3;
  margin-bottom: 1.1rem;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  font-weight: 400;
}
.glassy-services .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
}
.glassy-services .service-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e6e6e6;
  font-size: 0.98rem;
  line-height: 1.5;
}
.glassy-services .service-features li:before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #fff;
  opacity: 0.22;
}
.glassy-services .glassy-btn {
  display: block;
  margin: 1.2rem auto 0 auto;
  font-family: "Inter", "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border: none;
  border-radius: 0.7rem;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  text-align: center;
}
.glassy-services .glassy-btn:hover {
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px) scale(1.03);
}
@media (max-width: 900px) {
  .glassy-services .container {
    padding: 2.5rem 0.5rem 2.5rem 0.5rem;
  }
  .glassy-services .services-grid {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .glassy-services .service-card {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .glassy-services .section-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .glassy-services .icon-heading-row h3 {
    font-size: 1rem;
  }
  .glassy-services .service-desc {
    font-size: 0.93rem;
  }
  .glassy-services .service-features li {
    font-size: 0.91rem;
  }
  .glassy-services .glassy-btn {
    font-size: 0.93rem;
    padding: 0.7rem 1.2rem;
    margin-top: 0.7rem;
  }
}
