:root {
  --color-brand-blue: #111AE0;
  --color-brand-lime: #D1FF1A;
  --color-brand-dark: #101010;
  --color-brand-card: #18181A;
  --color-brand-light: #F0F0F0;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Archivo Black', ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-brand-dark);
  color: var(--color-brand-light);
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: rgba(17, 26, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header.scrolled {
  padding: 0.8rem 3rem;
  background-color: rgba(10, 15, 140, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.logo-mark-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.logo:hover .logo-mark-wrapper {
  transform: rotate(180deg) scale(1.08);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
}
.logo-subtitle {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-brand-lime);
  text-transform: uppercase;
  margin-top: 0.15rem;
  opacity: 0.95;
}
.nav {
  display: flex;
  gap: 0.5rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 0.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.nav a {
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  overflow: hidden;
}
.nav a span {
  opacity: 0.5;
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}
.nav a:hover {
  color: var(--color-brand-dark);
  background-color: var(--color-brand-lime);
  box-shadow: 0 4px 15px rgba(209, 255, 26, 0.35);
}
.nav a:hover span {
  transform: rotate(180deg);
  opacity: 1;
}

.contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-brand-lime);
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-text {
  display: flex;
  flex-direction: column;
}
.phone-text span {
  font-size: 0.6rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-text strong {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--color-brand-blue);
  color: white;
  padding: 8.5rem 3rem 8rem 3rem;
  overflow: hidden;
}
.hero-star {
  position: absolute;
  top: 9rem;
  right: 6rem;
  color: var(--color-brand-lime);
  opacity: 0.8;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
}
.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.5rem;
}
.hero-left, .hero-right {
  width: 20%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 20;
}
.hero-left {
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--color-brand-blue);
  object-fit: cover;
  margin-left: -0.75rem;
  transition: transform 0.3s ease, z-index 0.3s ease;
  position: relative;
  z-index: 1;
}
.avatars img:hover {
  transform: scale(1.2) translateX(-2px);
  z-index: 10;
}
.avatars img:first-child {
  margin-left: 0;
}
.avatars-group p {
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 140px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 1rem;
}
.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}
.stat span {
  color: var(--color-brand-lime);
  font-size: 1.5rem;
}
.stat p {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.8;
}
.divider {
  width: 2rem;
  height: 1px;
  background-color: rgba(255,255,255,0.2);
}
.hero-center {
  width: 60%;
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 500px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11rem;
  line-height: 0.8;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  mix-blend-mode: lighten;
}
.lime-text {
  color: var(--color-brand-lime);
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 3px var(--color-brand-lime);
  position: relative;
  z-index: 30;
  margin-top: -1.5rem;
}
.hero-image-wrapper {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 350px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1000px 1000px 0 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, rgba(17, 26, 224, 1), transparent);
}
.hero-right {
  gap: 2rem;
  margin-top: 5rem;
}
.hero-desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 200px;
}
.cta-button {
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: white;
  border: 1px solid white;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}
.cta-button:hover {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
  border-color: var(--color-brand-lime);
  transform: translateY(-2px);
}
.cta-button svg {
  transition: transform 0.3s ease;
}
.cta-button:hover svg {
  transform: translateX(4px);
}
.play-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-brand-lime);
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 6px solid rgba(17, 26, 224, 0.2);
  outline: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
  margin-top: 1rem;
  position: relative;
}
.play-button::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-brand-lime);
  opacity: 0;
  animation: playPulse 2s infinite;
  pointer-events: none;
}
@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.play-button:hover {
  transform: scale(1.15);
  background-color: white;
  color: var(--color-brand-blue);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.play-button svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
}

/* Marquee */
.marquee-wrapper {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
  padding: 1.25rem 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 30;
  margin-top: -1.5rem;
}
.marquee {
  display: flex;
  align-items: center;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 1rem;
}
.marquee span.plus {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.875rem;
}

/* Services */
.services {
  background-color: var(--color-brand-dark);
  padding: 6rem 3rem;
  padding-top: 8rem;
}
.services-container {
  max-width: 80rem;
  margin: 0 auto;
}
.services-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.services-title-area {
  flex: 1;
  max-width: 48rem;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-brand-lime);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.services-title-area h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-brand-light);
  text-transform: uppercase;
  line-height: 1.1;
}
.all-services-btn {
  color: var(--color-brand-light);
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.all-services-btn:hover {
  background-color: white;
  color: var(--color-brand-dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  min-height: 450px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  background-clip: padding-box;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    var(--glow-color, rgba(209, 255, 26, 0.12)),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card.dark {
  background-color: #18181A;
  color: var(--color-brand-light);
  --glow-color: rgba(209, 255, 26, 0.12);
}
.service-card.dark:hover {
  border-color: rgba(209, 255, 26, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.service-card.blue {
  background-color: var(--color-brand-blue);
  color: white;
  --glow-color: rgba(255, 255, 255, 0.15);
}
.service-card.blue:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(17, 26, 224, 0.3);
}
.service-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover .service-content {
  transform: translateZ(40px);
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.2;
  width: 66%;
}
.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}
.service-card:hover .card-icon {
  transform: translateZ(50px) scale(1.1);
}
.card-icon svg {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s;
}
.service-card:hover .card-icon svg {
  animation: arrowSlide 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes arrowSlide {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  49% {
    transform: translate(20px, -20px);
    opacity: 0;
  }
  50% {
    transform: translate(-20px, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.card-icon.solid {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
}
.card-icon.outline {
  border: 1px solid var(--color-brand-lime);
  color: var(--color-brand-lime);
  background: transparent;
}
.service-card:hover .card-icon.outline {
  background-color: var(--color-brand-lime);
  color: var(--color-brand-dark);
}
.service-content p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
  font-weight: 500;
}
.service-image {
  height: 12rem;
  overflow: hidden;
  filter: grayscale(100%) opacity(0.6);
  mix-blend-mode: luminosity;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s, opacity 0.5s;
}
.service-image.top {
  margin-bottom: 1.5rem;
}
.service-card:hover .service-image {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transform: translateZ(30px) scale(1.03);
}
.service-card.dark .service-image {
  margin-top: 2rem;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* About */
.about {
  background-color: var(--color-brand-light);
  color: var(--color-brand-dark);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(#ccc 1px, transparent 0);
  background-size: 20px 20px;
}
.about-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 10;
}
.about-left, .about-center, .about-right {
  flex: 1;
}
.about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-lime);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: var(--color-brand-dark);
  padding: 0.25rem 0.75rem;
  align-self: flex-start;
  margin-bottom: 2rem;
}
.about-left h2 {
  font-family: var(--font-display);
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.about-desc {
  color: rgba(16, 16, 16, 0.7);
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 380px;
  line-height: 1.6;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              background-color 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.feature-item:first-child {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}
.feature-item:first-child:hover {
  background: rgba(255, 255, 255, 0.85);
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
}
.feature-icon.lime {
  background-color: var(--color-brand-lime);
  box-shadow: 0 10px 15px -3px rgba(209, 255, 26, 0.2);
}
.feature-item:hover .feature-icon.lime {
  box-shadow: 0 15px 25px rgba(209, 255, 26, 0.4);
}
.feature-icon.blue {
  background-color: var(--color-brand-blue);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(17, 26, 224, 0.2);
}
.feature-item:hover .feature-icon.blue {
  box-shadow: 0 15px 25px rgba(17, 26, 224, 0.4);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-dark);
}
.about-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 650px;
  margin-top: -6rem;
  mix-blend-mode: multiply;
}
.about-blob {
  position: absolute;
  top: 33%;
  width: 80%;
  height: 60%;
  background-color: var(--color-brand-lime);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}
.about-img {
  width: 90%;
  max-width: 450px;
  height: 90%;
  object-fit: cover;
  object-position: top;
  border-radius: 100px;
  border-bottom-left-radius: 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-left: 3rem;
}
.office-img {
  width: 100%;
  max-width: 300px;
  height: 10rem;
  object-fit: cover;
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 300px;
}
.progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.progress-header .blue-text { color: var(--color-brand-blue); }
.progress-header .lime-text { color: var(--color-brand-lime); font-weight: bold; }
.progress-header .dark-text { color: var(--color-brand-dark); }
.progress-track {
  height: 6px;
  width: 100%;
  background-color: rgba(0,0,0,0.1);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
}
.blue-bg { background-color: var(--color-brand-blue); }
.lime-bg { background-color: var(--color-brand-lime); }
.dark-bg { background-color: var(--color-brand-dark); }
.about-small-text {
  font-size: 0.75rem;
  color: rgba(16, 16, 16, 0.6);
  max-width: 300px;
  line-height: 1.6;
  font-weight: 500;
}
.know-more-btn {
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-brand-dark);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-brand-dark);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.know-more-btn:hover {
  background-color: var(--color-brand-dark);
  color: var(--color-brand-light);
}

/* Footer */
.footer {
  background-color: #1A1A1A;
  padding: 3rem 1.5rem;
  overflow: hidden;
}
.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2.5rem;
  background-color: rgba(0,0,0,0.2);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
.footer-left {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-left h3, .footer-right h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-brand-lime);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.8;
}
.footer-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-contact-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer-contact-details p strong {
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-logos svg {
  color: var(--color-brand-lime);
  filter: grayscale(100%);
  opacity: 0.8;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
  transform-origin: center;
}
.footer-logos svg:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.2) rotate(360deg);
}
.footer-logos svg.active {
  filter: grayscale(0%) drop-shadow(0 0 10px rgba(209, 255, 26, 0.6));
  opacity: 1;
  color: var(--color-brand-lime);
  animation: continuousSpin 6s linear infinite;
}
@keyframes continuousSpin {
  from {
    transform: scale(1.2) rotate(0deg);
  }
  to {
    transform: scale(1.2) rotate(360deg);
  }
}
.footer-bottom {
  margin-top: 4rem;
  margin-bottom: 1rem;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
}
.footer-bottom h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
.footer-bottom .lime-text {
  color: var(--color-brand-lime);
}
.footer-bottom .white-text {
  color: white;
}

/* Premium Creative Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: all;
}
.preloader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}
.preloader-panel {
  width: 50%;
  height: 100%;
  background-color: var(--color-brand-dark);
}
.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: white;
}
.preloader-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-p-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.logo-p-sub {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--color-brand-lime);
  text-transform: uppercase;
  margin-top: 0.25rem;
  text-align: center;
}
.preloader-counter {
  font-family: var(--font-display);
  font-size: 10vw;
  line-height: 1;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.counter-percent {
  font-size: 3vw;
  color: var(--color-brand-lime);
  margin-top: 1.5vw;
  margin-left: 0.5vw;
}
.preloader-bar-wrapper {
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.preloader-bar {
  width: 0%;
  height: 100%;
  background-color: var(--color-brand-lime);
}

/* Interactive Modals System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 1.5rem;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/* Project Planner Card */
.modal-card {
  background: rgba(24, 24, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 100%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 100px rgba(17, 26, 224, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.modal-close:hover {
  color: var(--color-brand-lime);
  transform: rotate(90deg);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.modal-header p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

/* Form Styles */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
.form-group input, 
.form-group select, 
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: white;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form-group select option {
  background-color: var(--color-brand-dark);
  color: white;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--color-brand-lime);
  background: rgba(255, 255, 255, 0.05);
}
.modal-submit-btn {
  background: var(--color-brand-lime);
  color: var(--color-brand-dark);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.85rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(209, 255, 26, 0.25);
}

/* Success Screen Animation */
.modal-success-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 26, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.modal-success-screen.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}
.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--color-brand-lime);
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px var(--color-brand-lime);
  animation: fillSuccess .4s ease-in-out .4s forwards, scaleSuccess .3s ease-in-out .9s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--color-brand-lime);
  fill: none;
  animation: strokeSuccess 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--color-brand-dark);
  animation: strokeSuccess 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes strokeSuccess {
  100% { stroke-dashoffset: 0; }
}
@keyframes scaleSuccess {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fillSuccess {
  100% { box-shadow: inset 0px 0px 0px 40px var(--color-brand-lime); }
}
.modal-success-screen h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.modal-success-screen p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  line-height: 1.5;
}

/* Video Modal Card */
.modal-video-card {
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.modal-overlay.active .modal-video-card {
  transform: scale(1) translateY(0);
}
.video-ratio-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.video-ratio-wrapper iframe,
.video-ratio-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Cursor Follower */
.cursor-follower {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-brand-lime);
  background-color: transparent;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s ease,
              opacity 0.3s ease;
  opacity: 0;
}
.cursor-text {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  color: var(--color-brand-dark);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

/* Hover States for Follower */
.cursor-follower.cursor-hover {
  width: 50px;
  height: 50px;
  background-color: var(--color-brand-lime);
  border-color: var(--color-brand-lime);
}
.cursor-follower.cursor-hover .cursor-text {
  opacity: 1;
}

/* Video Hover State */
.cursor-follower.cursor-play {
  width: 65px;
  height: 65px;
  background-color: white;
  border-color: white;
}
.cursor-follower.cursor-play .cursor-text {
  opacity: 1;
  color: var(--color-brand-blue);
}

/* Standard Link hover (simple scale-up, hollow) */
.cursor-follower.cursor-link {
  width: 35px;
  height: 35px;
  border-color: white;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Smart Header scroll-hide class */
.header {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.header.header--hidden {
  transform: translateY(-100%);
}

/* Scroll reveal initial states */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  outline: none;
}
.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: left center;
}
.menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(3px, -1px);
  background-color: var(--color-brand-lime);
}
.menu-toggle.active .line-2 {
  opacity: 0;
}
.menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(3px, 1px);
  background-color: var(--color-brand-lime);
}

/* Full-screen Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 16, 16, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav-link:hover {
  color: var(--color-brand-lime);
  transform: scale(1.05);
}

/* Modal Scroll Container */
.modal-card {
  max-height: 90vh;
  overflow-y: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .about-container { flex-direction: column; }
  .hero-left, .hero-right, .hero-center { width: 100%; align-items: center; text-align: center; margin-top: 2rem; }
  .hero-text { font-size: 8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-center { margin-top: 0; }
  .about-blob { top: 10%; }
  .cursor-follower { display: none !important; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header { padding: 1rem 2rem; }
  .header .contact { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .hero-text { font-size: 5rem; }
  .about-left h2 { font-size: 3rem; }
  .footer-container { flex-direction: column; gap: 2.5rem; padding: 2rem 1.5rem; }
  .footer-logos { justify-content: center; }
}
@media (max-width: 480px) {
  .header { padding: 1rem 1.5rem; }
  .logo-title { font-size: 1.1rem; }
  .logo-subtitle { font-size: 0.55rem; }
  .hero { padding: 7rem 1.5rem 6rem 1.5rem; }
  .hero-text { font-size: 3.25rem; }
  .outline-text { margin-top: -0.5rem; -webkit-text-stroke: 1.5px var(--color-brand-lime); }
  .hero-image-wrapper { width: 260px; }
  .services { padding: 5rem 1.5rem; }
  .services-title-area h2 { font-size: 2.25rem; }
  .about { padding: 5rem 1.5rem; }
  .about-left h2 { font-size: 2.5rem; }
  .about-right { padding-left: 0; }
  .feature-item { padding: 1rem; }
  .feature-item h3 { font-size: 1rem; }
  .modal-card { padding: 1.5rem; border-radius: 16px; width: 95%; }
  .modal-header h2 { font-size: 1.5rem; }
}

/* Animation setup to prevent FOUC (Flash of Unstyled Content) */
.js-fade-in {
  opacity: 0;
}
