:root {
  /* Color Theme: White and Deep Navy (#0f2137) */
  --bg-light: #ffffff;
  --bg-light-alt: #f8fafc;
  --bg-dark: #0f2137;
  --bg-dark-alt: #0b1929;

  --electric: #2979ff;
  --electric-dim: #1a5cd4;
  --cyan: #00d4ff;
  --white: #ffffff;
  --off-white: #e8edf5;
  --muted: #6b7fa3;

  /* Text Colors on Light Backgrounds */
  --text-light-title: #0f2137;
  --text-light-body: #334155;
  --text-light-muted: #64748b;

  /* Text Colors on Dark Backgrounds */
  --text-dark-title: #ffffff;
  --text-dark-body: #e2e8f0;
  --text-dark-muted: #94a3b8;

  /* Glassmorphism definitions */
  --glass-light: rgba(15, 33, 55, 0.04);
  --glass-light-border: rgba(15, 33, 55, 0.08);
  --glass-dark: rgba(255, 255, 255, 0.04);
  --glass-dark-border: rgba(255, 255, 255, 0.08);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-light-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ─── SCROLL PROGRESS ─── */
#sp {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  z-index: 10000;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--glass-light-border);
  box-shadow: 0 4px 20px rgba(15, 33, 55, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

.nav-logo span {
  color: var(--electric);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--glass-dark);
}

nav.scrolled .nav-links a {
  color: var(--text-light-muted);
}

nav.scrolled .nav-links a:hover {
  color: var(--text-light-title);
  background: var(--glass-light);
}

/* ─── DROPDOWN MENU ─── */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
}

.dropdown-trigger .chevron {
  font-size: 0.6rem;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-item-dropdown:hover .dropdown-trigger .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 200px;
  background: rgba(15, 33, 55, 0.95);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  padding: 0.625rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

/* Scrolled Nav Dropdown Background styling */
nav.scrolled .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--glass-light-border);
  box-shadow: 0 15px 35px rgba(15, 33, 55, 0.08);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  padding: 0.625rem 1.25rem !important;
  margin: 0 0.5rem;
  border-radius: 0.75rem !important;
  transition: color 0.2s, background-color 0.2s !important;
  background: none !important;
}

.dropdown-menu a:hover {
  color: var(--white) !important;
  background-color: rgba(41, 121, 255, 0.15) !important;
}

/* Scrolled Nav Dropdown Links text coloring */
nav.scrolled .dropdown-menu a {
  color: var(--text-light-muted) !important;
}

nav.scrolled .dropdown-menu a:hover {
  color: var(--electric) !important;
  background-color: rgba(41, 121, 255, 0.08) !important;
}

.mobile-only {
  display: none !important;
}

.nav-catalog {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-catalog:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Scrolled Nav Catalog Style */
nav.scrolled .nav-catalog {
  border: 1px solid var(--electric);
  color: var(--electric);
  background: transparent;
}

nav.scrolled .nav-catalog:hover {
  background: var(--electric);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(41, 121, 255, 0.2);
}

.nav-cta {
  background: var(--electric);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(41, 121, 255, 0.35);
}

.nav-cta:hover {
  background: #3d8bff;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(41, 121, 255, 0.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

nav.scrolled .nav-hamburger span {
  background: var(--text-light-title);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  gap: 4rem;
  background: var(--bg-dark);
}

/* Hero background media */
.hero-video-bg,
.hero-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* Aurora background */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: var(--electric);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  top: 50%;
  right: -100px;
  animation-delay: -4s;
  opacity: 0.15;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  bottom: -100px;
  left: 40%;
  animation-delay: -8s;
  opacity: 0.12;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 40px) scale(1.08);
  }
}

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(41, 121, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 121, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.375rem 0.875rem;
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 100px;
  background: rgba(41, 121, 255, 0.08);
  margin-bottom: 2rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--electric);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .accent {
  color: var(--white);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-dark-body);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--electric);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(41, 121, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.15) 50%, transparent 65%);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.6s ease;
}

.btn-primary-hero:hover::before {
  transform: translateX(150%) skewX(-20deg);
}

.btn-primary-hero:hover {
  background: #3d8bff;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(41, 121, 255, 0.55);
}

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--glass-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--glass-dark-border);
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-dark-border);
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.125rem;
}

/* Hero right: 3D product showcase */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
}

.hero-card-main {
  position: absolute;
  inset: 5% -20% 5% 35%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(41, 121, 255, 0.4));
  animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

/* Floating info cards */
.hero-float-card {
  position: absolute;
  background: rgba(15, 33, 55, 0.85);
  border: 1px solid rgba(41, 121, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--cyan);
}

.hero-float-card-1 {
  top: 8%;
  left: 20%;
  animation: floatA 7s ease-in-out infinite;
}

.hero-float-card-2 {
  bottom: 12%;
  right: -25%;
  animation: floatB 8s ease-in-out infinite;
}

.hero-float-card-3 {
  top: 60%;
  left: 15%;
  animation: floatA 9s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.hero-float-card .label {
  color: var(--text-dark-muted);
  display: block;
  font-size: 0.5625rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-float-card .val {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

/* Glow rings */
.glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(41, 121, 255, 0.12);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  animation-delay: 0s;
}

.ring-2 {
  width: 125%;
  height: 125%;
  top: -12.5%;
  left: -12.5%;
  animation-delay: -1.5s;
}

.ring-3 {
  width: 142%;
  height: 142%;
  top: -21%;
  left: -21%;
  animation-delay: -3s;
  opacity: 0.5;
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.4;
  }
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-light-border);
  border-bottom: 1px solid var(--glass-light-border);
  overflow: hidden;
  background: var(--bg-light-alt);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light-muted);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  background: var(--electric);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT / BUILT FOR PERFORMANCE ─── */
.about-section,
.infrastructure-section {
  padding: 2rem;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--electric);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-light-title);
  margin-bottom: 1.5rem;
}

.about-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-body {
  color: var(--text-light-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 4.5rem;
  width: 100%;
}

.counter-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--glass-light-border);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 33, 55, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.counter-card:hover::before {
  opacity: 1;
}

.counter-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 121, 255, 0.35);
  box-shadow: 0 20px 40px rgba(15, 33, 55, 0.08), 0 1px 3px rgba(41, 121, 255, 0.05);
}

.counter-icon-wrap {
  position: relative;
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  background: rgba(41, 121, 255, 0.06);
  border: 1px solid rgba(41, 121, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.counter-card:hover .counter-icon-wrap {
  background: var(--electric);
  color: var(--white);
  border-color: var(--electric);
  box-shadow: 0 8px 20px rgba(41, 121, 255, 0.25);
  transform: scale(1.05) rotate(5deg);
}

.counter-icon {
  width: 1.75rem;
  height: 1.75rem;
  transition: all 0.3s ease;
}

/* Fan spin animation */
@keyframes fanSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fan-svg {
  animation: fanSpin 8s linear infinite;
}

.counter-card:hover .fan-svg {
  animation-duration: 2s;
}

.counter-card-body {
  position: relative;
  z-index: 1;
  width: 100%;
}

.counter-val {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-light-title);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}

.counter-val span {
  color: var(--text-light-title);
}

.counter-val .c-num {
  background: linear-gradient(135deg, var(--text-light-title) 0%, #1a3a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-val .c-sign {
  color: var(--electric);
  margin-left: 2px;
}

.counter-lbl {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light-body);
  letter-spacing: -0.01em;
}

.counter-card:hover .counter-lbl {
  color: var(--electric);
}

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-light-alt);
  border: 1px solid var(--glass-light-border);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

/* Scan line effect */
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  /* background: linear-gradient(to top, var(--bg-light), transparent); */
  z-index: 2;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-light-border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(16px);
}

.about-badge .badge-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-badge .badge-text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-light-title);
  margin-top: 0.25rem;
}

/* Pillars (Legacy, Vision, Mission) styling */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 4.5rem;
  width: 100%;
}

.pillar-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--glass-light-border);
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(15, 33, 55, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 121, 255, 0.35);
  box-shadow: 0 20px 40px rgba(15, 33, 55, 0.07);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-header {
  margin-bottom: 1.5rem;
  position: relative;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-title);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--text-light-title) 0%, #1a3a8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-title::after {
  content: '/';
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--electric);
  margin-left: 0.25rem;
  -webkit-text-fill-color: var(--electric);
  /* Override text gradient for slash */
}

.pillar-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-light-body);
}

.pillar-body strong {
  color: var(--text-light-title);
  font-weight: 600;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pillar-list-item {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light-body);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pillar-list-item::before {
  content: '❖';
  color: var(--electric);
  font-size: 0.85rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 3.5rem;
  }
}

/* ─── PRODUCTS ─── */
.products-section {
  padding: 2rem;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.products-section .inner {
  padding: 0 3rem;
}

.products-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 1.25rem;
}

.products-heading {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-dark-title);
  max-width: 100%;
}

.products-heading em {
  font-style: normal;
  color: var(--electric);
}

.products-sub {
  color: var(--text-dark-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 60ch;
  text-align: center;
}

/* Horizontal scroll container */
.products-scroll-outer {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0 3rem;
  position: relative;
}

.products-scroll-outer::before,
.products-scroll-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.products-scroll-outer::before {
  left: 0;
}

.products-scroll-outer::after {
  right: 0;
}

.products-row {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: productsMarquee 28s linear infinite;
  will-change: transform;
}

.products-row:hover {
  animation-play-state: paused;
}

@keyframes productsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.product-card {
  width: 340px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s, background-color 0.4s;
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(41, 121, 255, 0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.product-card:hover {
  border-color: rgba(41, 121, 255, 0.4);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(41, 121, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.product-card:hover::before {
  opacity: 1;
}

.product-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.product-img-wrap img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(41, 121, 255, 0.3));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 16px 40px rgba(41, 121, 255, 0.5));
}

/* Shimmer */
.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.04) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.product-card:hover .product-img-wrap::after {
  transform: translateX(100%);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  color: var(--electric);
  background: rgba(41, 121, 255, 0.12);
  border: 1px solid rgba(41, 121, 255, 0.2);
  border-radius: 100px;
  padding: 0.25rem 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-body {
  padding: 1.5rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark-title);
  margin-bottom: 0.625rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-dark-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--electric);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap 0.25s ease, opacity 0.2s;
}

.product-card:hover .product-link {
  gap: 0.75rem;
}

/* ─── INDUSTRIES ─── */
.industries-section {
  padding: 2rem;
  position: relative;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

/* Network node visualization */
.node-network {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}

.node-network svg {
  width: 100%;
  height: 100%;
}

.industries-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.industry-item {
  border-bottom: 1px solid var(--glass-light-border);
}

.industry-item:last-child {
  border-bottom: none;
}

.industry-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  transition: padding-left 0.3s ease;
  cursor: pointer;
}

.industry-row:hover {
  padding-left: 0.5rem;
}

.industry-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--electric);
  width: 2rem;
  flex-shrink: 0;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-light-title);
  transition: color 0.2s;
  flex: 1;
}

.industry-row:hover .industry-name,
.industry-item.active .industry-name {
  color: var(--electric);
}

.industry-arrow {
  color: var(--text-light-muted);
  font-size: 1rem;
  transition: transform 0.3s, color 0.3s;
}

.industry-row:hover .industry-arrow {
  transform: translateX(4px);
  color: var(--electric);
}

/* Active Arrow Rotates Downwards */
.industry-item.active .industry-arrow {
  transform: rotate(90deg);
  color: var(--electric);
}

.industry-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-desc-text {
  padding: 0 0 1.25rem 3.25rem;
  font-size: 0.9375rem;
  color: var(--text-light-body);
  line-height: 1.7;
}

/* ─── WHY CHOOSE US — BENTO ─── */
.why-section {
  padding: 2rem;
  background: var(--bg-dark);
}

.why-section .about-heading {
  color: var(--text-dark-title);
}

.why-section .about-body {
  color: var(--text-dark-body);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 4rem;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--glass-light-border);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s, background-color 0.35s;
}

.bento-card:hover {
  border-color: rgba(41, 121, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 33, 55, 0.08);
  background-color: #f8fafc;
}

.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bento-card:hover::after {
  transform: scaleX(1);
}

/* Large cards */
.bento-card.large {
  grid-column: span 2;
}

.bento-card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--electric);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f2137;
  margin-bottom: 0.75rem;
}

.bento-desc {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Background glow */
.bento-card .bg-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--electric);
  filter: blur(60px);
  opacity: 0;
  top: -30px;
  right: -30px;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover .bg-glow {
  opacity: 0.05;
}

/* ─── PROCESS ─── */
.process-section {
  padding: 2rem;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 5rem;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), var(--electric), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(13, 31, 56, 0.9);
  border: 1px solid rgba(41, 121, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover .step-circle {
  border-color: rgba(41, 121, 255, 0.6);
  box-shadow: 0 0 30px rgba(41, 121, 255, 0.2);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--electric);
  position: absolute;
  top: -1.5rem;
}

.step-icon {
  font-size: 1.5rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: 2rem;
  background: var(--bg-dark);
}

.gallery-section .about-heading {
  color: var(--text-dark-title);
}

.gallery-section .about-body {
  color: var(--text-dark-body);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}

.showcase-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
  height: auto;
}

.showcase-item:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 121, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(41, 121, 255, 0.1);
}

.showcase-item img {
  width: 100% !important;
  height: auto !important;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-item:hover img {
  transform: scale(1.04);
}

/* ─── CTA ─── */
.cta-section {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(41, 121, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--electric);
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0;
}

@keyframes particleDrift {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--electric), var(--cyan), var(--electric));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.cta-sub {
  color: var(--text-dark-body);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto 3rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--glass-dark-border);
  padding: 5rem 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--glass-dark-border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--electric);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 1.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  border-color: var(--electric);
  color: var(--electric);
  background: rgba(41, 121, 255, 0.08);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  color: var(--text-dark-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-item .icon {
  color: var(--electric);
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  width: 16px;
}

.footer-contact-item a {
  color: var(--text-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  text-align: center;
}

.footer-bottom a {
  color: var(--electric);
  text-decoration: none;
  font-weight: 500;
}

/* ─── MISSION OVERRIDES ─── */
.mission-section {
  padding: 2rem;
  background: var(--bg-light) !important;
  border-top: 1px solid var(--glass-light-border) !important;
}

.mission-section .about-heading {
  color: var(--text-light-title) !important;
}

.mission-section .about-body {
  color: var(--text-light-body) !important;
}

/* ─── SCROLL REVEAL ─── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sr.sr-left {
  transform: translateX(-32px);
}

.sr.sr-right {
  transform: translateX(32px);
}

.sr.in {
  opacity: 1;
  transform: translate(0, 0);
}

.sr-d1 {
  transition-delay: 0.1s;
}

.sr-d2 {
  transition-delay: 0.2s;
}

.sr-d3 {
  transition-delay: 0.3s;
}

.sr-d4 {
  transition-delay: 0.4s;
}

.sr-d5 {
  transition-delay: 0.5s;
}

/* ─── SUBPAGE STYLES ─── */
.subpage-hero {
  position: relative;
  padding: 10rem 3rem 6rem;
  background: var(--bg-dark);
  text-align: left;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(41, 121, 255, 0.1) 0%, transparent 80%);
  pointer-events: none;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
}

.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.subpage-hero h1 em {
  font-style: normal;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.subpage-hero p {
  font-size: 1.125rem;
  color: var(--text-dark-body);
  line-height: 1.8;
}

.subpage-section {
  padding: 2rem 3rem;
  position: relative;
}

.subpage-section.bg-light {
  background: var(--bg-light);
}

.subpage-section.bg-light-alt {
  background: var(--bg-light-alt);
}

.subpage-container {
  max-width: 1200px;
  margin: 0 auto;
}

.subpage-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.subpage-title-box {
  margin-bottom: 3rem;
}

.subpage-title-box .about-heading {
  margin-bottom: 1rem;
}

.features-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-check-card {
  background: var(--white);
  border: 1px solid var(--glass-light-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(15, 33, 55, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-check-card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 121, 255, 0.3);
}

.feature-check-card .icon-chk {
  color: var(--electric);
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-check-card .text-chk {
  font-size: 0.9375rem;
  color: var(--text-light-body);
  font-weight: 500;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--glass-light-border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 121, 255, 0.3);
  box-shadow: 0 10px 25px rgba(15, 33, 55, 0.06);
}

.app-card .app-icon {
  font-size: 1.5rem;
  color: var(--electric);
  margin-bottom: 1.25rem;
}

.app-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-light-title);
  margin-bottom: 0.75rem;
}

.app-card p {
  font-size: 0.875rem;
  color: var(--text-light-body);
  line-height: 1.6;
}

.why-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.why-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-item-card {
  background: var(--white);
  border: 1px solid var(--glass-light-border);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-item-card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 121, 255, 0.3);
}

.why-item-card h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-title);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.why-item-card h4::before {
  content: '✔';
  color: var(--electric);
  font-weight: bold;
}

.why-item-card p {
  font-size: 0.875rem;
  color: var(--text-light-body);
  line-height: 1.6;
  padding-left: 1.75rem;
}

/* ─── RESPONSIVE MEDIA QUERIES ─── */

/* 1. Compact Laptops & Medium Screens */
@media (max-width: 1366px) {
  .hero-card-main {
    inset: 5% -5% 5% 20%;
  }

  .hero-float-card-1 {
    left: 10%;
  }
}



/* 2. Tablets (iPad / Landscape & Portrait) */
@media (max-width: 1024px) {

  /* Navigation Collapsed Style (Hamburger Trigger) */
  nav {
    padding: 1.25rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.875rem 1.5rem;
  }

  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 33, 55, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    gap: 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2rem;
    list-style: none;
    margin: 0;
  }

  body.nav-open .nav-links {
    transform: translateY(0);
  }

  .nav-links li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-links a {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    background: none;
  }

  .nav-links a:hover {
    color: var(--cyan);
    background: none;
  }

  /* Mobile Dropdown styles */
  .nav-item-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-trigger {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    width: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-item-dropdown.active .dropdown-menu {
    max-height: 250px;
    padding: 1rem 0 0.5rem;
  }

  .dropdown-menu a {
    font-family: var(--font-display) !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 0.25rem 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: color 0.2s !important;
    text-align: center;
  }

  .dropdown-menu a:hover {
    color: var(--cyan) !important;
    background: none !important;
  }

  body.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  body.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-cta,
  .nav-catalog {
    display: none;
  }

  .mobile-only {
    display: flex !important;
    margin-top: 1rem;
  }

  .mobile-only a {
    font-family: var(--font-display) !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: var(--electric) !important;
    background-color: var(--white) !important;
    border: 1.5px solid var(--electric) !important;
    border-radius: 100px !important;
    padding: 0.625rem 2rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .mobile-only a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(41, 121, 255, 0.2) !important;
  }

  /* Grid Restructuring for Tablet Widths */
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.large {
    grid-column: span 1;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
  }

  .process-flow::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-counters {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  /* Tablet Hero Adjustments: 1 column layout, centered stage below text */
  .hero {
    grid-template-columns: 1fr;
    padding: 8rem 2rem 4rem;
    text-align: center;
    gap: 2rem;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-sub {
    margin: 0 auto 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .hero-3d-stage {
    max-width: 480px;
  }

  .hero-card-main {
    inset: 5% 0% 5% 0%;
    /* Center the fan on tablet screen width */
  }

  .hero-float-card-1 {
    left: 5%;
  }



  .hero-float-card-3 {
    left: 10%;
  }
}

/* 3. Mobile Viewports (Phones) */
@media (max-width: 768px) {


  .hero {
    padding: 7rem 1.25rem 3.5rem;
  }

  .hero-visual {
    display: none !important;
    /* Hide 3D stage completely on mobile to clean up space */
  }

  .about-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-section .inner {
    padding: 0 1.25rem;
  }

  .products-scroll-outer {
    padding: 1.5rem 1.25rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 3rem 1.25rem 0;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .products-sub {
    text-align: left;
  }

  /* Responsive Subpage Styles */
  .subpage-hero {
    padding: 8rem 1.25rem 4rem;
  }

  .subpage-section {
    padding: 2rem 1.25rem;
  }

  .subpage-grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-grid-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .apps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-counters {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

/* ─── FLOATING SIDEBARS (SOCIAL & CONTACT) ─── */
.floating-sidebar-left,
.floating-sidebar-right {
  position: fixed;
  bottom: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.floating-sidebar-left {
  left: 24px;
}

.floating-sidebar-right {
  right: 24px;
}

.floating-side-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-side-badge svg,
.floating-side-badge img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover States */
.floating-side-badge:hover {
  transform: scale(1.15) translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.floating-side-badge:hover svg,
.floating-side-badge:hover img {
  transform: scale(1.1);
}

/* Color schemes for official brands */
.floating-facebook svg {
  color: #1877f2;
  fill: #1877f2;
}

.floating-youtube svg {
  color: #ff0000;
  fill: #ff0000;
}

.floating-instagram svg {
  /* Controlled via inline SVG stroke gradient or fallback color */
  color: #e4405f;
}

.floating-whatsapp svg {
  color: #25d366;
  fill: #25d366;
}

.floating-phone svg {
  color: #2979ff;
  fill: #2979ff;
}

.floating-email svg {
  color: #ea4335;
  fill: #ea4335;
}

/* Mobile Scaling (under 768px) to prevent blocking main content */
@media (max-width: 768px) {

  .floating-sidebar-left,
  .floating-sidebar-right {
    bottom: 24px;
  }

  .floating-sidebar-left {
    left: 12px;
  }

  .floating-sidebar-right {
    right: 12px;
  }

  .floating-side-badge {
    width: 38px;
    height: 38px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .floating-side-badge svg,
  .floating-side-badge img {
    width: 18px;
    height: 18px;
  }
}
/* --- POPUP CONTACT MODAL --- */
.popup-contact-modal {
  display: none;
  position: fixed;
  z-index: 12000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 33, 55, 0.85);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.popup-contact-modal.active {
  opacity: 1;
}
.popup-contact-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 1.5rem;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.popup-contact-modal.active .popup-contact-content {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--text-light-muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover {
  color: var(--electric);
}
.popup-contact-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.popup-contact-content p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.popup-input {
  width: 100%;
  background: var(--bg-light-alt);
  border: 1px solid var(--glass-light-border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--text-light-title);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.popup-input:focus {
  outline: none;
  border-color: var(--electric);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(41, 121, 255, 0.1);
}
textarea.popup-input {
  resize: vertical;
  min-height: 100px;
}
.popup-submit-btn {
  width: 100%;
  background: var(--electric);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.popup-submit-btn:hover {
  background: #3d8bff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 121, 255, 0.35);
}
.popup-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

