:root {
  --bg: #050a1f;
  --bg-alt: #090f2b;
  --text: #e9f2ff;
  --muted: #9bb0d6;
  --neon-cyan: #18f0ff;
  --neon-blue: #2084ff;
  --neon-green: #17f884;
  --neon-pink: #ff2ec8;
  --card: rgba(10, 20, 50, 0.55);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  background: radial-gradient(circle at top right, #0d1f4d 0%, var(--bg) 60%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(40, 120, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 120, 255, 0.08) 1px, transparent 1px);
  background-size: 35px 35px;
  transform: perspective(600px) rotateX(60deg) translateY(-120px);
  transform-origin: center top;
  z-index: -3;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -2;
  opacity: 0.55;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb-one {
  width: 240px;
  height: 240px;
  background: var(--neon-cyan);
  top: 10%;
  left: -60px;
}
.orb-two {
  width: 280px;
  height: 280px;
  background: var(--neon-pink);
  right: -80px;
  bottom: 10%;
  animation-duration: 15s;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(3, 9, 24, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  font-family: "Orbitron", sans-serif;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo i { color: var(--neon-cyan); }
.logo-nd {
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 1.1em;
}
.logo-techhub {
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 1.28em;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.25s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--neon-cyan);
  background: rgba(24, 240, 255, 0.08);
}
.has-dropdown { position: relative; }
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(4, 13, 34, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown li { width: 100%; }
.dropdown a { display: block; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  gap: 30px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 54px 0;
}
.tag {
  display: inline-block;
  font-weight: 700;
  color: var(--neon-green);
  border: 1px solid rgba(23, 248, 132, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.6px;
}
h1, h2, h3, h4 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 6vw, 3.6rem); margin: 12px 0; }
.section-title { font-size: clamp(1.4rem, 4vw, 2.2rem); margin: 0 0 20px; }
p { color: var(--muted); font-size: 1.08rem; }

.hero-cta,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.hero-meta span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
}

.ethics-badge {
  margin-top: 16px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  border: 1px solid rgba(23, 248, 132, 0.38);
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(23, 248, 132, 0.12), rgba(24, 240, 255, 0.08));
  box-shadow: 0 8px 20px rgba(23, 248, 132, 0.14);
}
.ethics-badge i {
  color: var(--neon-green);
  font-size: 1rem;
}
.ethics-badge strong {
  color: #d9ffe9;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}
.ethics-badge span {
  color: #b9d5c4;
  font-size: 0.92rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  transition: 0.25s;
}
.btn-primary {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
  color: #03122e;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24, 240, 255, 0.35); }
.btn-outline {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}
.btn-outline:hover { background: rgba(24, 240, 255, 0.08); }

.hero-panel,
.glass-card,
.stat-card,
.timeline,
.ceo,
.cta {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border-radius: 16px;
}
.hero-panel {
  height: 340px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 800px;
}
.panel-layer {
  text-align: center;
  padding: 24px;
  transform: translateZ(40px);
}
.panel-layer i {
  font-size: 3rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(24, 240, 255, 0.5);
}

.immersive {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  margin: 12px auto 42px;
}
.immersive-copy p {
  margin-top: 0;
}
.immersive-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 240, 255, 0.22), transparent 42%),
    radial-gradient(circle at 86% 82%, rgba(255, 46, 200, 0.18), transparent 48%),
    linear-gradient(130deg, rgba(8, 18, 42, 0.95), rgba(3, 8, 23, 0.92));
  transform-style: preserve-3d;
  perspective: 1000px;
}
.immersive-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.immersive-fallback .immersive-canvas {
  display: none;
}
.float-card {
  position: absolute;
  width: min(220px, 48%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(8, 17, 43, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: translateZ(40px);
  z-index: 2;
  pointer-events: none;
}
.float-card h3 {
  font-size: 1rem;
  margin: 8px 0 6px;
}
.float-card p {
  margin: 0;
  font-size: 0.95rem;
}
.float-card i {
  color: var(--neon-cyan);
  text-shadow: 0 0 18px rgba(24, 240, 255, 0.42);
}
.float-card-main {
  left: 8%;
  top: 16%;
  transform: translate3d(0, 0, 72px) rotateY(8deg);
}
.float-card-side {
  right: 8%;
  top: 26%;
  transform: translate3d(0, 0, 48px) rotateY(-10deg);
}
.float-card-bottom {
  left: 27%;
  bottom: 12%;
  transform: translate3d(0, 0, 56px) rotateX(5deg);
}

.immersive-stage,
.float-card {
  transition: transform 0.3s ease;
}

.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 42px;
}
.stat-card {
  text-align: center;
  padding: 20px;
}
.stat-card h3 {
  font-size: 2rem;
  color: var(--neon-cyan);
  margin: 0;
}

.features,
.page-space {
  padding: 30px 0 70px;
}
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-lg { gap: 24px; }

.glass-card {
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.glass-card i {
  font-size: 1.8rem;
  color: var(--neon-cyan);
}
.project-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(24, 240, 255, 0.22);
  margin-bottom: 14px;
}

.services-bento {
  padding: 8px 0 36px;
}
.bento-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(132px, auto));
}
.bento-card {
  --accent: var(--neon-cyan);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: linear-gradient(145deg, rgba(8, 18, 46, 0.9), rgba(8, 16, 38, 0.7));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: -40% 50% auto -20%;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 70%);
  pointer-events: none;
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.82;
  pointer-events: none;
}
.bento-card:hover {
  border-color: color-mix(in srgb, var(--accent) 52%, rgba(255,255,255,0.18));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 20%, rgba(0,0,0,0.35));
}
.bento-card h3 {
  margin: 10px 0 8px;
  font-size: 1.08rem;
}
.bento-card p {
  margin: 0;
  font-size: 0.98rem;
}
.bento-card i {
  color: var(--accent);
  text-shadow: 0 0 16px color-mix(in srgb, var(--accent) 45%, transparent);
  font-size: 1.2rem;
}
.bento-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.bento-link:hover {
  color: color-mix(in srgb, var(--accent) 72%, white);
}
.bento-card {
  cursor: pointer;
}
.bento-detail {
  margin-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--text) 82%, #9fb8d8);
  transition: max-height 0.35s ease, opacity 0.28s ease;
}
.bento-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 70%, rgba(255,255,255,0.25));
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent) 24%, rgba(0,0,0,0.4));
}
.bento-card.is-active .bento-detail {
  max-height: 120px;
  opacity: 1;
}
.bento-card.is-active::after {
  height: 3px;
  opacity: 1;
}
.bento-primary {
  --accent: var(--neon-cyan);
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(12, 35, 89, 0.95), rgba(8, 18, 46, 0.8));
}
.bento-app {
  --accent: var(--neon-green);
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}
.bento-ux {
  --accent: var(--neon-pink);
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.bento-seo {
  --accent: #ffb347;
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}
.bento-audit {
  --accent: #9f8bff;
  grid-column: 4 / 5;
  grid-row: 4 / 5;
}
.bento-support {
  --accent: #7df3d2;
  grid-column: 2 / 4;
  grid-row: 3 / 5;
}
.testimonials {
  padding-bottom: 20px;
}
.testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.testimonial-card {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 22px;
}
.testimonial-card i {
  color: var(--neon-cyan);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.testimonial-card h3 {
  margin: 12px 0 4px;
  font-size: 1rem;
}
.testimonial-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.skills-matrix {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.skill-head h3 {
  margin: 0;
  font-size: 1rem;
}
.skill-head i {
  color: var(--neon-cyan);
}
.skill-head span {
  color: var(--neon-cyan);
  font-weight: 700;
}
.skill-meter {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}
.skill-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
}
.skills-tags {
  margin-top: 24px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list span {
  border: 1px solid var(--border);
  background: rgba(24, 240, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text);
}

.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-card {
  text-align: left;
}
.team-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(24, 240, 255, 0.35);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.team-role {
  margin: 6px 0 10px;
  color: var(--neon-cyan);
  font-weight: 700;
}

.ceo {
  margin: 36px auto;
  padding: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: 140px 1fr;
  align-items: center;
}
.ceo-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(24, 240, 255, 0.45);
  background: radial-gradient(circle at top, #13346f 0%, #071124 70%);
}
.ceo-photo i {
  font-size: 3.2rem;
  color: var(--neon-cyan);
}
.ceo-message h3 { margin-bottom: 4px; }

.cta {
  margin: 22px auto 70px;
  text-align: center;
  padding: 28px;
}

.page-hero {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(13, 24, 57, 0.55);
}


.growth-plan-block,
.service-plan-block {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 16%, rgba(24, 240, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(8, 18, 46, 0.9), rgba(8, 16, 38, 0.8));
  box-shadow: var(--shadow);
}
.growth-plan-block h2,
.service-plan-block h2 {
  margin: 8px 0 10px;
}
.growth-plan-grid,
.service-plan-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}
.growth-phase,
.service-phase {
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 14px;
  background: rgba(7, 15, 40, 0.72);
}
.growth-phase h3,
.service-phase h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.growth-phase ul,
.service-phase ul {
  margin: 0;
  padding-left: 20px;
}
.growth-phase li,
.service-phase li {
  margin: 0 0 8px;
  color: color-mix(in srgb, var(--text) 84%, #9fb8d8);
}
.growth-phase li:last-child,
.service-phase li:last-child {
  margin-bottom: 0;
}
.story-lab {
  margin-bottom: 34px;
}
.story-lab-head {
  max-width: 760px;
  margin-bottom: 16px;
}
.story-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: start;
}
.story-steps {
  display: grid;
  gap: 14px;
}
.story-step {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(9, 18, 45, 0.74);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.story-step h3 {
  margin: 8px 0 10px;
  font-size: 1rem;
}
.story-step p {
  margin: 0;
  font-size: 0.97rem;
}
.story-step-kicker {
  color: var(--neon-cyan);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 0.84rem;
  text-transform: uppercase;
}
.story-step.is-active {
  border-color: rgba(24, 240, 255, 0.58);
  background: linear-gradient(140deg, rgba(16, 35, 88, 0.8), rgba(7, 16, 42, 0.86));
  transform: translateY(-3px);
}
.story-visual {
  position: sticky;
  top: 92px;
  min-height: 500px;
  overflow: hidden;
}
.story-visual-stage {
  position: relative;
  min-height: 500px;
  background:
    radial-gradient(circle at 18% 22%, rgba(24, 240, 255, 0.2), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(255, 46, 200, 0.18), transparent 45%),
    linear-gradient(145deg, rgba(6, 15, 38, 0.95), rgba(4, 10, 26, 0.92));
}
.story-noise {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(135, 172, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(135, 172, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.45;
}
.story-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 50%;
  border: 1px solid rgba(24, 240, 255, 0.45);
  transform-style: preserve-3d;
}
.story-orbit-a {
  width: 260px;
  height: 260px;
  margin: -130px 0 0 -130px;
  transform: rotateX(67deg);
  animation: orbitSpin 11s linear infinite;
}
.story-orbit-b {
  width: 178px;
  height: 178px;
  margin: -89px 0 0 -89px;
  border-color: rgba(255, 46, 200, 0.5);
  transform: rotateY(62deg) rotateX(12deg);
  animation: orbitSpinReverse 8s linear infinite;
}
.story-core-cube {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 122px;
  height: 122px;
  margin: -61px 0 0 -61px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(24, 240, 255, 0.58), rgba(32, 132, 255, 0.25));
  box-shadow: 0 0 30px rgba(24, 240, 255, 0.35);
  transform: rotateX(34deg) rotateY(28deg);
  transition: transform 0.45s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.story-code-rain {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 24px;
  display: grid;
  gap: 7px;
}
.story-code-rain span {
  font-family: "Orbitron", sans-serif;
  font-size: 0.77rem;
  letter-spacing: 0.22px;
  color: #a7d4ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(6, 12, 32, 0.58);
  transform: translateX(0);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.story-traffic-bars {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 118px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  align-items: end;
}
.story-traffic-bars span {
  height: var(--bar-h);
  min-height: 16px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(24, 240, 255, 0.95), rgba(24, 240, 255, 0.28));
  box-shadow: 0 0 12px rgba(24, 240, 255, 0.22);
  transition: height 0.45s ease, background 0.35s ease;
}
.story-metrics {
  position: absolute;
  right: 22px;
  top: 178px;
  display: grid;
  gap: 8px;
}
.metric-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.84rem;
  color: #c6dcff;
  background: rgba(5, 12, 32, 0.68);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.story-shell[data-story-stage="1"] .metric-lcp,
.story-shell[data-story-stage="2"] .metric-lcp,
.story-shell[data-story-stage="3"] .metric-uptime,
.story-shell[data-story-stage="4"] .metric-cvr {
  border-color: rgba(24, 240, 255, 0.56);
  color: #e6f8ff;
  transform: translateX(-5px);
}
.story-shell[data-story-stage="1"] .story-core-cube {
  transform: rotateX(28deg) rotateY(22deg) scale(0.92);
}
.story-shell[data-story-stage="2"] .story-core-cube {
  transform: rotateX(34deg) rotateY(36deg) scale(1.02);
}
.story-shell[data-story-stage="3"] .story-core-cube {
  transform: rotateX(40deg) rotateY(10deg) scale(0.95);
  box-shadow: 0 0 30px rgba(23, 248, 132, 0.3);
  background: linear-gradient(145deg, rgba(23, 248, 132, 0.5), rgba(24, 240, 255, 0.2));
}
.story-shell[data-story-stage="4"] .story-core-cube {
  transform: rotateX(34deg) rotateY(-22deg) scale(1.06);
  box-shadow: 0 0 35px rgba(255, 46, 200, 0.32);
  background: linear-gradient(145deg, rgba(255, 46, 200, 0.5), rgba(24, 240, 255, 0.25));
}
.story-shell[data-story-stage="2"] .story-code-rain span:nth-child(2),
.story-shell[data-story-stage="3"] .story-code-rain span:nth-child(3),
.story-shell[data-story-stage="4"] .story-code-rain span:nth-child(1) {
  border-color: rgba(24, 240, 255, 0.55);
  transform: translateX(4px);
}
.story-shell[data-story-stage="4"] .story-traffic-bars span {
  background: linear-gradient(180deg, rgba(255, 46, 200, 0.95), rgba(255, 46, 200, 0.25));
}
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(1) { height: 34%; }
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(2) { height: 46%; }
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(3) { height: 59%; }
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(4) { height: 73%; }
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(5) { height: 88%; }
.story-shell[data-story-stage="4"] .story-traffic-bars span:nth-child(6) { height: 100%; }
.timeline { padding: 24px; margin-top: 24px; }
.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item i { color: var(--neon-cyan); margin-top: 6px; }

.contact-form {
  display: grid;
  gap: 10px;
}
label { font-weight: 600; color: var(--text); }
input, textarea, select {
  width: 100%;
  background: rgba(3, 9, 24, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 2px rgba(24, 240, 255, 0.15);
}
.form-note { font-size: 0.92rem; margin: 0; }

.site-footer {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% -10%, rgba(24, 240, 255, 0.2), transparent 38%),
    radial-gradient(circle at 92% 115%, rgba(255, 46, 200, 0.18), transparent 36%),
    rgba(2, 6, 19, 0.94);
  padding: 24px 0 12px;
}
.footer-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 15, 38, 0.75);
  backdrop-filter: blur(10px);
  padding: 20px;
  box-shadow: var(--shadow);
}
.footer-shell::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -20%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 240, 255, 0.2), transparent 62%);
  pointer-events: none;
  animation: footerGlowMove 9s ease-in-out infinite alternate;
}
.footer-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(24, 240, 255, 0.35);
  background: linear-gradient(115deg, rgba(24, 240, 255, 0.12), rgba(255, 46, 200, 0.08));
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.footer-cta-band:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 240, 255, 0.55);
  box-shadow: 0 10px 24px rgba(24, 240, 255, 0.18);
}
.footer-kicker {
  margin: 0 0 6px;
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-cta-band h3 {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
}
.modern-footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
}
.modern-footer-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(10, 18, 44, 0.58);
  padding: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.modern-footer-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 240, 255, 0.45);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.footer-brand p {
  margin: 8px 0;
}
.footer-ethics-badge {
  margin-top: 12px;
  width: 100%;
  padding: 8px 10px;
  gap: 6px 8px;
  border-color: rgba(23, 248, 132, 0.3);
  background: linear-gradient(130deg, rgba(23, 248, 132, 0.1), rgba(24, 240, 255, 0.05));
  box-shadow: none;
}
.footer-ethics-badge strong {
  font-size: 0.82rem;
}
.footer-ethics-badge span {
  font-size: 0.84rem;
  color: #acd1bd;
}
.footer-links h4,
.footer-connect h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.footer-links a,
.footer-mini-links a,
.footer-blog-link {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a {
  display: block;
  margin-bottom: 8px;
}
.footer-links a:hover,
.footer-mini-links a:hover,
.footer-blog-link:hover {
  color: var(--neon-cyan);
}
.footer-socials {
  margin-bottom: 12px;
}
.footer-socials a {
  box-shadow: 0 0 0 rgba(24, 240, 255, 0);
}
.footer-socials a:hover {
  box-shadow: 0 0 18px rgba(24, 240, 255, 0.28);
}
.footer-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.footer-bottom {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-mini-links {
  display: flex;
  gap: 14px;
}
.footer-address {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}
.footer-map {
  margin-top: 10px;
}
.footer-map iframe {
  width: min(220px, 100%);
  height: 160px;
  border-radius: 12px;
  display: block;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a,
.whatsapp-float {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.socials a:hover,
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}
.facebook { background: #1877f2; }
.instagram { background: radial-gradient(circle at 35% 110%, #fdf497 0%, #fdf497 10%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.linkedin { background: #0a66c2; }
.youtube { background: #ff0000; }
.twitter { background: #0f1419; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite;
}

.copyright {
  margin: 0;
  padding: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes drift {
  from { transform: translateY(-10px) translateX(0); }
  to { transform: translateY(25px) translateX(20px); }
}
@keyframes orbitSpin {
  from { transform: rotateX(67deg) rotateZ(0deg); }
  to { transform: rotateX(67deg) rotateZ(360deg); }
}
@keyframes orbitSpinReverse {
  from { transform: rotateY(62deg) rotateX(12deg) rotateZ(360deg); }
  to { transform: rotateY(62deg) rotateX(12deg) rotateZ(0deg); }
}

@keyframes footerGlowMove {
  from { transform: translate(0, 0) scale(1); opacity: 0.75; }
  to { transform: translate(36px, 22px) scale(1.08); opacity: 0.45; }
}

@media (max-width: 980px) {
  .growth-plan-grid,
.service-plan-grid {
    grid-template-columns: 1fr;
  }
  .story-shell {
    grid-template-columns: 1fr;
  }
  .story-visual {
    position: relative;
    top: 0;
    min-height: 430px;
  }
  .story-visual-stage {
    min-height: 430px;
  }
  .hero,
  .immersive,
  .stats,
  .grid-3,
  .grid-2,
  .skills-matrix,
  .team-grid,
  .testimonials-grid,
  .ceo {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .bento-primary,
  .bento-app,
  .bento-support {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-ux,
  .bento-seo,
  .bento-audit {
    grid-column: span 1;
    grid-row: span 1;
  }
  .footer-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .modern-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(1, 8, 20, 0.96);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
  }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-left: 10px;
    display: none;
  }
  .has-dropdown::after { display: none; }
  .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 620px) {
  .story-step {
    padding: 14px;
  }
  .story-visual,
  .story-visual-stage {
    min-height: 380px;
  }
  .story-code-rain {
    left: 14px;
    right: 14px;
  }
  .story-code-rain span {
    font-size: 0.72rem;
  }
  .story-metrics {
    right: 14px;
    top: 164px;
  }
  .metric-chip {
    font-size: 0.78rem;
    padding: 6px 9px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-primary,
  .bento-app,
  .bento-ux,
  .bento-seo,
  .bento-audit,
  .bento-support {
    grid-column: span 1;
    grid-row: span 1;
  }
  .immersive-stage {
    min-height: 350px;
  }
  .float-card {
    width: 56%;
  }
  .float-card-main {
    left: 6%;
  }
  .float-card-side {
    right: 5%;
    top: 30%;
  }
  .float-card-bottom {
    left: 20%;
    bottom: 10%;
  }
  .modern-footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-shell {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-orbit-a,
  .story-orbit-b {
    animation: none !important;
  }
  .story-step,
  .story-core-cube,
  .story-traffic-bars span,
  .story-code-rain span,
  .metric-chip {
    transition: none !important;
  }
  .orb,
  .immersive-stage,
  .whatsapp-float {
    animation: none !important;
  }
}

/* NDMart */
.ndmart-shell {
  padding-top: 28px;
}
.ndmart-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ndmart-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ndmart-filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 17, 44, 0.74);
  color: var(--text);
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.ndmart-filter.is-active {
  border-color: rgba(24, 240, 255, 0.55);
  color: var(--neon-cyan);
  background: rgba(24, 240, 255, 0.12);
}

.ndmart-category-grid,
.ndmart-coming-grid,
.ndmart-product-grid {
  display: grid;
  gap: 14px;
}
.ndmart-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}
.ndmart-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ndmart-coming-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ndmart-category-card,
.ndmart-product-card,
.ndmart-coming-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(8, 17, 44, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 16px;
}
.ndmart-category-card.is-active {
  border-color: rgba(24, 240, 255, 0.6);
  background: linear-gradient(145deg, rgba(17, 38, 96, 0.78), rgba(8, 17, 44, 0.78));
}
.ndmart-category-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--neon-cyan);
  border: 1px solid rgba(24, 240, 255, 0.35);
  background: rgba(24, 240, 255, 0.1);
}
.ndmart-category-card h3,
.ndmart-product-card h3,
.ndmart-coming-card h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}
.ndmart-category-card p,
.ndmart-product-card p,
.ndmart-coming-card p {
  margin: 0;
  font-size: 0.95rem;
}

.ndmart-capabilities,
.ndmart-products,
.ndmart-coming {
  margin-top: 22px;
}
.ndmart-capabilities-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(9, 20, 52, 0.86), rgba(6, 14, 37, 0.8));
  box-shadow: var(--shadow);
  padding: 16px;
}
.ndmart-cap-origin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(24, 240, 255, 0.35);
  background: rgba(24, 240, 255, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  color: #d8f2ff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.84rem;
}
.ndmart-cap-origin i {
  color: var(--neon-cyan);
}
.ndmart-cap-lines {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.ndmart-cap-lines li {
  color: #b8c7e6;
}
.ndmart-cap-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ndmart-cap-tags span {
  border: 1px solid rgba(23, 248, 132, 0.35);
  background: rgba(23, 248, 132, 0.1);
  color: #bdf9da;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}
.ndmart-product-media {
  border: 1px solid rgba(24, 240, 255, 0.25);
  border-radius: 12px;
  min-height: 86px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(24, 240, 255, 0.18), transparent 55%), rgba(3, 10, 27, 0.75);
  position: relative;
}
.ndmart-product-media i {
  color: var(--neon-cyan);
  font-size: 1.4rem;
}
.ndmart-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0a1e4a;
  background: linear-gradient(90deg, var(--neon-green), #78ffd1);
}
.ndmart-price-row {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ndmart-price-row strong {
  color: #dcf4ff;
  font-size: 1.02rem;
}
.ndmart-price-row span {
  color: #89a5d0;
  text-decoration: line-through;
  font-size: 0.88rem;
}
.ndmart-stock {
  margin-top: 8px;
  color: #9ad7b7;
  font-size: 0.85rem;
}

.ndmart-coming-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ndmart-coming-head span {
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  padding: 4px 8px;
  font-size: 0.76rem;
  color: #b8c9e8;
}
.ndmart-coming-card button {
  margin-top: 12px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #8fa6cb;
  padding: 9px 10px;
  font: inherit;
  font-weight: 700;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .growth-plan-grid,
.service-plan-grid {
    grid-template-columns: 1fr;
  }
  .ndmart-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ndmart-coming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .ndmart-category-grid,
  .ndmart-product-grid,
  .ndmart-coming-grid {
    grid-template-columns: 1fr;
  }
}

/* NDTechHub Venture Highlight */
.venture-highlight {
  margin: 4px auto 28px;
}
.venture-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(9, 20, 52, 0.84), rgba(6, 14, 37, 0.82));
  box-shadow: var(--shadow);
  padding: 22px;
}
.venture-points {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.venture-points span {
  border: 1px solid rgba(24, 240, 255, 0.3);
  border-radius: 999px;
  padding: 7px 11px;
  color: #c9e8ff;
  font-size: 0.9rem;
}
.venture-points i {
  color: var(--neon-cyan);
}
.venture-links,
.project-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.venture-side {
  align-self: stretch;
}

@media (max-width: 980px) {
  .growth-plan-grid,
.service-plan-grid {
    grid-template-columns: 1fr;
  }
  .venture-shell {
    grid-template-columns: 1fr;
  }
}










.service-back-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 56;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 240, 255, 0.36);
  background: linear-gradient(140deg, rgba(7, 20, 48, 0.92), rgba(5, 13, 33, 0.92));
  color: #d6f6ff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(6px);
}
.service-back-float i {
  color: var(--neon-cyan);
}
.service-back-float:hover {
  border-color: rgba(24, 240, 255, 0.62);
  transform: translateY(-2px);
}
@media (max-width: 620px) {
  .service-back-float {
    right: 14px;
    bottom: 84px;
    padding: 9px 11px;
  }
  .service-back-float span {
    display: none;
  }
}


.service-plan-meta {
  margin-top: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.quote-mini-form,
.service-faq {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(7, 15, 40, 0.62);
  padding: 14px;
}
.quote-mini-form h3,
.service-faq h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.quote-mini-form input,
.quote-mini-form textarea {
  width: 100%;
  margin-bottom: 9px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(4, 10, 28, 0.8);
  color: var(--text);
  padding: 9px 10px;
  font: inherit;
}
.quote-mini-form textarea {
  resize: vertical;
  min-height: 80px;
}
.quote-mini-form .btn {
  width: 100%;
  justify-content: center;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-of-type {
  border-top: 0;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 12px 0;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.24s ease;
}
.faq-answer p {
  margin: 0 0 12px;
  color: color-mix(in srgb, var(--text) 84%, #9fb8d8);
}
.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
}
@media (max-width: 980px) {
  .service-plan-meta {
    grid-template-columns: 1fr;
  }
}

.quote-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(14px);
  z-index: 90;
  border: 1px solid rgba(24, 240, 255, 0.45);
  border-radius: 999px;
  background: rgba(5, 14, 34, 0.95);
  color: #d7f7ff;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.quote-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quote-mini-form .has-error {
  border-color: #ff7c93;
  box-shadow: 0 0 0 1px rgba(255, 124, 147, 0.28);
}
.field-error {
  margin: -4px 0 8px;
  color: #ff9aae;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote-toast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.quote-toast-action {
  border: 1px solid rgba(24, 240, 255, 0.5);
  border-radius: 999px;
  background: rgba(12, 28, 66, 0.9);
  color: #d7f7ff;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 10px;
  cursor: pointer;
}
.quote-toast-action:hover {
  border-color: rgba(24, 240, 255, 0.85);
}
