/* ============================================
   INTRO / HERO SECTION — exact mockup match
   Light lavender bg, two-column, 3D visual
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ── Section ── */
.intro-section {
  position: relative;
  background: #f3f2fe;
  overflow: hidden;
  padding: 0;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  pointer-events: auto; /* Restore clicks — header has pointer-events: none */
}

/* Glowing background blobs */
.intro-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.intro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}
.glow-1 {
  top: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(165, 180, 252, 0.5) 0%,
    rgba(165, 180, 252, 0) 70%
  );
}
.glow-2 {
  top: -5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(196, 181, 253, 0.5) 0%,
    rgba(196, 181, 253, 0) 70%
  );
}
.glow-3 {
  top: 25%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(129, 140, 248, 0.3) 0%,
    rgba(129, 140, 248, 0) 70%
  );
}

/* Floating background dots */
.intro-bg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.intro-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(109, 96, 238, 0.25);
}

@keyframes contact-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ── Main Container: Two Columns ── */
.intro-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  max-width: 1520px;
  width: 100%;
  padding: 3.5rem 2rem 4rem;
  margin: 0 auto;
}

/* ── Text Column ── */
.intro-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

/* Badge */
.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 9999px;
  color: #4f46e5;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px 8px 12px;
  width: fit-content;
  backdrop-filter: blur(4px);
  letter-spacing: -0.01em;
}
.intro-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: intro-dot-blink 2s ease-in-out infinite;
}
@keyframes intro-dot-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

/* Headline */
.intro-title {
  font-size: clamp(2.9rem, 5.2vw, 4.2rem);
  font-weight: 900;
  color: #09090b;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.intro-gradient {
  background: linear-gradient(135deg, #4f46e5 15%, #a855f7 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.intro-desc {
  font-size: 1.12rem;
  color: #1e293b;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

/* Buttons */
.intro-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.intro-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
  letter-spacing: 0.01em;
}
.intro-btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.intro-btn-primary:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}
.intro-btn-primary:hover svg {
  transform: translateX(3px);
}

.intro-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #1f2937;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 30px;
  border-radius: 9999px;
  border: 1px solid rgba(79, 70, 229, 0.15);
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}
.intro-btn-secondary svg {
  width: 14px;
  height: 14px;
}
.intro-btn-secondary:hover {
  background: #ffffff;
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.08);
}

/* Stats row */
.intro-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.intro-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.intro-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(79, 70, 229, 0.15);
  flex-shrink: 0;
}
.intro-stat-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #4f46e5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}
.intro-stat-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  color: #fff;
  stroke: #fff;
}
.intro-stat-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.intro-stat-num {
  font-size: 1.55rem;
  font-weight: 850;
  color: #09090b;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.intro-stat-label {
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 600;
}

/* ── Visual Column (Right) ── */
.intro-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-visual-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Volumetric scene background glow */
.vis-scene-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-190px, -190px);
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.25) 0%,
    rgba(99, 102, 241, 0.15) 45%,
    rgba(139, 92, 246, 0) 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

/* Glassmorphic Scene container */
.intro-visual-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

/* Common style for Glassmorphic Cards */
.vis-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 15px 35px rgba(31, 38, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  position: absolute;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Main Dashboard Card */
.vis-card-main {
  width: min(380px, 90%);
  height: 260px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translate(0, 0);
  animation: vis-main-float 6s ease-in-out infinite;
  z-index: 3;
}
.vis-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4f46e5;
  margin-left: 6px;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.vis-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(79, 70, 229, 0.08);
  padding-bottom: 8px;
}
.vis-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vis-dot:nth-child(1) {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
}
.vis-dot:nth-child(2) {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}
.vis-dot:nth-child(3) {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}
.vis-card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  position: relative;
}
.vis-body-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vis-body-title-skele {
  width: 90px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(79, 70, 229, 0.15),
    rgba(168, 85, 247, 0.15)
  );
}
.vis-body-btn-skele {
  width: 40px;
  height: 12px;
  border-radius: 6px;
  background: rgba(79, 70, 229, 0.1);
}
.vis-body-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vis-content-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(79, 70, 229, 0.08);
}
.vis-content-line.w-full {
  width: 100%;
}
.vis-content-line.w-3-4 {
  width: 75%;
}
.vis-content-line.w-2-3 {
  width: 60%;
}

.vis-ai-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}
.vis-ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: contact-pulse 2s infinite;
  flex-shrink: 0;
}
.vis-ai-badge-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

/* Floating Code Card (Left Side) */
.vis-card-code {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  left: 20px;
  top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  box-shadow: 0 10px 25px rgba(31, 38, 135, 0.06);
  animation: vis-code-float 5s ease-in-out infinite;
  z-index: 4;
}

/* Floating Graph Card (Bottom Right) */
.vis-card-graph {
  width: 140px;
  height: 110px;
  border-radius: 20px;
  right: 20px;
  bottom: 60px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(31, 38, 135, 0.06);
  animation: vis-graph-float 7s ease-in-out infinite;
  z-index: 4;
}
.vis-graph-svg {
  width: 100%;
  height: 100%;
}
.vis-graph-pulse-dot {
  animation: vis-pulse-dot 2s infinite;
}

/* Floating 3D Glowing Glass Cube (Front) */
.vis-cube-wrapper {
  position: absolute;
  bottom: 50px;
  left: 100px;
  width: 80px;
  height: 80px;
  perspective: 400px;
  z-index: 5;
}
.vis-cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(32deg);
  animation: vis-cube-rotate 12s linear infinite;
}
.cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(168, 85, 247, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.25);
  backdrop-filter: blur(5px);
  border-radius: 6px;
}
.cube-front {
  transform: rotateY(0deg) translateZ(40px);
}
.cube-back {
  transform: rotateY(180deg) translateZ(40px);
}
.cube-left {
  transform: rotateY(-90deg) translateZ(40px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(40px);
}
.cube-top {
  transform: rotateX(90deg) translateZ(40px);
  background: rgba(168, 85, 247, 0.3);
}
.cube-bottom {
  transform: rotateX(-90deg) translateZ(40px);
}

/* Volumetric neon glow core inside the cube */
.vis-cube::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, #a855f7 0%, #4f46e5 100%);
  border-radius: 12px;
  filter: blur(8px);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.9);
  animation: vis-cube-core-pulse 3s ease-in-out infinite alternate;
  z-index: -1;
}

/* Floating particle spheres */
.vis-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #a855f7 20%, rgba(79, 70, 229, 0.6) 80%);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
  z-index: 1;
}
.part-1 {
  width: 12px;
  height: 12px;
  top: 60px;
  right: 80px;
  animation: vis-particle-float-1 8s ease-in-out infinite;
}
.part-2 {
  width: 8px;
  height: 8px;
  bottom: 80px;
  left: 60px;
  animation: vis-particle-float-2 6s ease-in-out infinite;
}
.part-3 {
  width: 10px;
  height: 10px;
  top: 220px;
  right: 190px;
  animation: vis-particle-float-3 9s ease-in-out infinite;
}
.part-4 {
  width: 6px;
  height: 6px;
  top: 120px;
  left: 160px;
  animation: vis-particle-float-2 7s ease-in-out infinite;
}

/* ── Animation Keyframes ── */
@keyframes vis-main-float {
  0%,
  100% {
    transform: translateY(0) rotateX(2deg) rotateY(-2deg);
  }
  50% {
    transform: translateY(-10px) rotateX(-2deg) rotateY(2deg);
  }
}
@keyframes vis-code-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-8deg);
  }
}
@keyframes vis-graph-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}
@keyframes vis-cube-rotate {
  0% {
    transform: rotateX(-22deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(-22deg) rotateY(360deg);
  }
}
@keyframes vis-cube-core-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
    filter: blur(6px);
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
    filter: blur(10px);
  }
}
@keyframes vis-pulse-dot {
  0% {
    r: 5;
    opacity: 1;
    stroke: rgba(168, 85, 247, 1);
    stroke-width: 0px;
  }
  70% {
    r: 9;
    opacity: 0;
    stroke: rgba(168, 85, 247, 0.4);
    stroke-width: 8px;
  }
  100% {
    r: 5;
    opacity: 0;
    stroke: rgba(168, 85, 247, 0);
    stroke-width: 0px;
  }
}
@keyframes vis-particle-float-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -15px);
  }
}
@keyframes vis-particle-float-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -20px);
  }
}
@keyframes vis-particle-float-3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, 12px);
  }
}

/* ── Scene Glows ── */
.vis-scene-glow-2 {
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.2) 0%,
    rgba(99, 102, 241, 0) 70%
  );
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════
   VIS2 — Hero Visual Scene
   ══════════════════════════════════════════ */

/* Network SVG */
.vis-network-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─────────────────────────────────────────
   BROWSER CARD  (main focal card — center)
───────────────────────────────────────── */
.vis2-browser-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow:
    0 24px 60px rgba(31, 38, 135, 0.14),
    0 4px 12px rgba(31, 38, 135, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  z-index: 8;
  animation: vis-main-float 7s ease-in-out infinite;
}
.vis2-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid rgba(99, 102, 241, 0.07);
}
.vis2-chrome-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.vis2-cdot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.vis2-chrome-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 102, 241, 0.06);
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 0;
}
.vis2-url-text {
  font-size: 0.63rem;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", monospace;
}
.vis2-chrome-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.vis2-browser-body {
  display: flex;
  padding: 14px 14px 16px;
  gap: 12px;
  min-height: 155px;
}

/* Left panel — progress bars */
.vis2-panel-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vis2-section-label {
  font-size: 0.62rem;
  font-weight: 800;
  color: #334155;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: "Inter", sans-serif;
}
.vis2-prog-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 4px;
}
.vis2-prog-row {
  height: 7px;
  background: rgba(99, 102, 241, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.vis2-prog-bar {
  height: 100%;
  width: var(--pw, 50%);
  background: var(--pc, linear-gradient(90deg, #6366f1, #a5b4fc));
  border-radius: 4px;
  animation: vis2-bar-grow 1.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes vis2-bar-grow {
  from {
    width: 0;
  }
  to {
    width: var(--pw, 50%);
  }
}

/* Right panel — AI badge */
.vis2-panel-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  width: 72px;
  border-left: 1px solid rgba(99, 102, 241, 0.07);
  padding-left: 12px;
}
.vis2-ai-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis2-ai-circuit-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dashed rgba(168, 85, 247, 0.4);
  animation: vis2-spin 8s linear infinite;
}
@keyframes vis2-spin {
  to {
    transform: rotate(360deg);
  }
}
.vis2-ai-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}
.vis2-ai-text {
  font-size: 0.88rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.vis2-activate-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
.vis2-act-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  flex-shrink: 0;
  animation: contact-pulse 2s infinite;
}

/* ─────────────────────────────────────────
   ANALYTICS CARD  (top-right, floating)
───────────────────────────────────────── */
.vis2-analytics-card {
  position: absolute;
  top: 4%;
  right: 8%;
  width: 168px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow:
    0 16px 44px rgba(31, 38, 135, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 13px;
  z-index: 9;
  animation: vis-graph-float 6s ease-in-out infinite 1.2s;
}
.vis2-analytics-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
}
.vis2-analytics-legend {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
}
.vis2-leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.58rem;
  color: #64748b;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.vis2-leg-line {
  display: inline-block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
}
.vis2-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}
.vis2-chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 0.52rem;
  color: rgba(100, 116, 139, 0.65);
  margin-top: 3px;
  font-family: "Inter", monospace;
}

/* ─────────────────────────────────────────
   CODE EDITOR CARD  (left, tilted)
───────────────────────────────────────── */
.vis2-code-card {
  position: absolute;
  top: 18%;
  left: 2%;
  width: 192px;
  background: #16162a;
  border-radius: 14px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.38),
    0 6px 16px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  z-index: 7;
  transform: rotate(-5deg);
  animation: vis-code-float 7s ease-in-out infinite 0.8s;
}
.vis2-code-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #0f0f24;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vis2-code-title {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 5px;
  font-family: "Inter", monospace;
  font-weight: 500;
}
.vis2-code-lines {
  padding: 10px 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vis2-code-line {
  font-size: 0.63rem;
  font-family: "Courier New", monospace;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.vis2-code-line .cln {
  color: rgba(255, 255, 255, 0.18);
  margin-right: 8px;
  user-select: none;
  font-size: 0.57rem;
}
.vis2-code-line .ckw {
  color: #c792ea;
}
.vis2-code-line .ccl {
  color: #82aaff;
}
.vis2-code-line .cstr {
  color: #c3e88d;
}

/* ─────────────────────────────────────────
   ICON CARDS  (floating badges)
───────────────────────────────────────── */
.vis2-icon-card {
  position: absolute;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 38, 135, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
}
/* Git icon — right-center */
.vis2-git-card {
  top: 48%;
  right: 5%;
  animation: vis-graph-float 6s ease-in-out infinite 1s;
}
/* Code tag — top-left area */
.vis2-code-icon-card {
  top: 14%;
  left: 5%;
  animation: vis-code-float 5s ease-in-out infinite;
}
/* Layers — far right */
.vis2-layers-card {
  top: 52%;
  right: 5%;
  display: none; /* hidden, git icon covers same area */
}

/* ─────────────────────────────────────────
   CIRCUIT CUBE  (center-bottom)
───────────────────────────────────────── */
.vis2-circuit-cube-wrap {
  position: absolute;
  bottom: 8%;
  left: 42%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  perspective: 400px;
  z-index: 5;
}
.vis2-circuit-cube {
  width: 72px;
  height: 72px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(32deg);
  animation: vis-cube-rotate 14s linear infinite;
}
.vis2-cube-face {
  position: absolute;
  width: 72px;
  height: 72px;
  background: rgba(168, 85, 247, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.22);
  backdrop-filter: blur(5px);
  border-radius: 6px;
}
.vis2-cf-front {
  transform: rotateY(0deg) translateZ(36px);
}
.vis2-cf-back {
  transform: rotateY(180deg) translateZ(36px);
}
.vis2-cf-left {
  transform: rotateY(-90deg) translateZ(36px);
}
.vis2-cf-right {
  transform: rotateY(90deg) translateZ(36px);
}
.vis2-cf-top {
  transform: rotateX(90deg) translateZ(36px);
  background: rgba(168, 85, 247, 0.32);
}
.vis2-cf-bottom {
  transform: rotateX(-90deg) translateZ(36px);
}
.vis2-circuit-glow {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 56px;
  height: 56px;
  background: radial-gradient(circle, #a855f7 0%, #4f46e5 100%);
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.5;
  animation: vis-cube-core-pulse 3s ease-in-out infinite alternate;
}

/* ─────────────────────────────────────────
   GLASS CUBES  (scattered decorative)
───────────────────────────────────────── */
.vis2-glass-cube {
  position: absolute;
  width: 52px;
  height: 52px;
  perspective: 300px;
  z-index: 3;
}
.vis2-gc-face {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 5px;
}
.vis2-gc-front {
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotateY(0deg) translateZ(26px);
}
.vis2-gc-back {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotateY(180deg) translateZ(26px);
}
.vis2-gc-left {
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotateY(-90deg) translateZ(26px);
}
.vis2-gc-right {
  background: rgba(99, 102, 241, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotateY(90deg) translateZ(26px);
}
.vis2-gc-top {
  background: rgba(196, 181, 253, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transform: rotateX(90deg) translateZ(26px);
}

.gc-1 {
  top: 2%;
  left: 3%;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: vis-cube-rotate 18s linear infinite;
  opacity: 0.9;
}
.gc-2 {
  top: 5%;
  right: 32%;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(45deg);
  animation: vis-cube-rotate 22s linear infinite reverse;
  opacity: 0.6;
  width: 34px;
  height: 34px;
}
.gc-2 .vis2-gc-face {
  width: 34px;
  height: 34px;
}
.gc-2 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(17px);
}
.gc-2 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(17px);
}
.gc-2 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(17px);
}
.gc-2 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(17px);
}
.gc-2 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(17px);
}

.gc-3 {
  bottom: 14%;
  left: 28%;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotateY(20deg);
  animation: vis-cube-rotate 16s linear infinite 2s;
  opacity: 0.8;
  width: 48px;
  height: 48px;
}
.gc-3 .vis2-gc-face {
  width: 48px;
  height: 48px;
}
.gc-3 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(24px);
}
.gc-3 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(24px);
}
.gc-3 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(24px);
}
.gc-3 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(24px);
}
.gc-3 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(24px);
}

.gc-4 {
  top: 58%;
  left: 8%;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(50deg);
  animation: vis-cube-rotate 20s linear infinite 1s;
  opacity: 0.55;
  width: 30px;
  height: 30px;
}
.gc-4 .vis2-gc-face {
  width: 30px;
  height: 30px;
}
.gc-4 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(15px);
}
.gc-4 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(15px);
}
.gc-4 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(15px);
}
.gc-4 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(15px);
}
.gc-4 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(15px);
}

.gc-5 {
  bottom: 30%;
  left: 18%;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(38deg);
  animation: vis-cube-rotate 25s linear infinite reverse 3s;
  opacity: 0.45;
  width: 26px;
  height: 26px;
}
.gc-5 .vis2-gc-face {
  width: 26px;
  height: 26px;
}
.gc-5 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(13px);
}
.gc-5 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(13px);
}
.gc-5 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(13px);
}
.gc-5 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(13px);
}
.gc-5 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(13px);
}

/* ─────────────────────────────────────────
   DARK MODE  vis2 overrides
───────────────────────────────────────── */
body.dark-mode .vis2-browser-card,
body.dark-mode .vis2-analytics-card,
body.dark-mode .vis2-icon-card {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
body.dark-mode .vis2-browser-chrome {
  background: rgba(9, 9, 11, 0.65);
  border-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode .vis2-section-label {
  color: #94a3b8;
}
body.dark-mode .vis2-analytics-title {
  color: #e2e8f0;
}
body.dark-mode .vis2-url-text {
  color: #475569;
}
body.dark-mode .vis2-prog-row {
  background: rgba(99, 102, 241, 0.1);
}
body.dark-mode .vis2-cube-face {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── Trusted By ── */

/* ── Browser Card ── */
.vis2-browser-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: min(310px, 85%);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(31, 38, 135, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  z-index: 5;
  animation: vis-main-float 7s ease-in-out infinite;
}
.vis2-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}
.vis2-chrome-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.vis2-cdot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.vis2-chrome-bar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(99, 102, 241, 0.06);
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 0;
}
.vis2-url-text {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Inter", monospace;
}
.vis2-chrome-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.vis2-browser-body {
  display: flex;
  gap: 0;
  padding: 14px;
  min-height: 160px;
}

/* Left panel (progress bars) */
.vis2-panel-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 12px;
  border-right: 1px solid rgba(99, 102, 241, 0.08);
}
.vis2-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}
.vis2-prog-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vis2-prog-row {
  height: 8px;
  background: rgba(99, 102, 241, 0.07);
  border-radius: 4px;
  overflow: hidden;
}
.vis2-prog-bar {
  height: 100%;
  width: var(--pw, 50%);
  background: var(--pc, linear-gradient(90deg, #6366f1, #a5b4fc));
  border-radius: 4px;
  animation: vis2-bar-grow 1.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes vis2-bar-grow {
  from {
    width: 0;
  }
  to {
    width: var(--pw, 50%);
  }
}

/* Right panel (AI badge + activate) */
.vis2-panel-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-left: 14px;
  flex-shrink: 0;
  width: 90px;
}
.vis2-ai-icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis2-ai-circuit-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(168, 85, 247, 0.45);
  animation: vis2-spin 8s linear infinite;
}
@keyframes vis2-spin {
  to {
    transform: rotate(360deg);
  }
}
.vis2-ai-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}
.vis2-ai-text {
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.vis2-activate-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
.vis2-act-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  flex-shrink: 0;
  animation: contact-pulse 2s infinite;
}

/* ── Analytics Card (top-right of browser) ── */
.vis2-analytics-card {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 165px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  box-shadow:
    0 14px 40px rgba(31, 38, 135, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px;
  z-index: 6;
  animation: vis-graph-float 6s ease-in-out infinite 1s;
}
.vis2-analytics-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
  font-family: "Inter", sans-serif;
}
.vis2-analytics-legend {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.vis2-leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: #64748b;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
.vis2-leg-line {
  display: inline-block;
  width: 14px;
  height: 2.5px;
  border-radius: 2px;
}
.vis2-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}
.vis2-chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: rgba(100, 116, 139, 0.7);
  margin-top: 2px;
  font-family: "Inter", monospace;
}

/* ── Code Editor Card ── */
.vis2-code-card {
  position: absolute;
  top: 32%;
  left: 3%;
  width: 185px;
  background: #1a1a2e;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  z-index: 5;
  animation: vis-code-float 6s ease-in-out infinite 0.5s;
}
.vis2-code-chrome {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #12122a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vis2-code-title {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 4px;
  font-family: "Inter", monospace;
  font-weight: 500;
}
.vis2-code-lines {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vis2-code-line {
  font-size: 0.62rem;
  font-family: "Courier New", monospace;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.vis2-code-line .cln {
  color: rgba(255, 255, 255, 0.2);
  margin-right: 8px;
  user-select: none;
  font-size: 0.58rem;
}
.vis2-code-line .ckw {
  color: #c792ea;
}
.vis2-code-line .ccl {
  color: #82aaff;
}
.vis2-code-line .cstr {
  color: #c3e88d;
}

/* ── Icon Cards ── */
.vis2-icon-card {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 38, 135, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 6;
}
.vis2-git-card {
  bottom: 35%;
  right: 12%;
  animation: vis-graph-float 7s ease-in-out infinite 1.5s;
}
.vis2-code-icon-card {
  top: 20%;
  left: 5%;
  animation: vis-code-float 5s ease-in-out infinite;
}
.vis2-layers-card {
  top: 6%;
  right: 12%;
  animation: vis-particle-float-1 8s ease-in-out infinite 0.5s;
}

/* ── Circuit Cube ── */
.vis2-circuit-cube-wrap {
  position: absolute;
  bottom: 4%;
  left: 38%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  perspective: 400px;
  z-index: 4;
}
.vis2-circuit-cube {
  width: 80px;
  height: 80px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(32deg);
  animation: vis-cube-rotate 14s linear infinite;
}
.vis2-cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(168, 85, 247, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.25);
  backdrop-filter: blur(5px);
  border-radius: 6px;
}
.vis2-cf-front {
  transform: rotateY(0deg) translateZ(40px);
}
.vis2-cf-back {
  transform: rotateY(180deg) translateZ(40px);
}
.vis2-cf-left {
  transform: rotateY(-90deg) translateZ(40px);
}
.vis2-cf-right {
  transform: rotateY(90deg) translateZ(40px);
}
.vis2-cf-top {
  transform: rotateX(90deg) translateZ(40px);
  background: rgba(168, 85, 247, 0.32);
}
.vis2-cf-bottom {
  transform: rotateX(-90deg) translateZ(40px);
}
.vis2-circuit-glow {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #a855f7 0%, #4f46e5 100%);
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.55;
  animation: vis-cube-core-pulse 3s ease-in-out infinite alternate;
}

/* ── Glass Cubes ── */
.vis2-glass-cube {
  position: absolute;
  width: 55px;
  height: 55px;
  perspective: 300px;
  z-index: 3;
}
.vis2-gc-face {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 5px;
}
/* Isometric-style "cube" using stacked faces */
.vis2-gc-front {
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: rotateY(0deg) translateZ(27px);
}
.vis2-gc-back {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotateY(180deg) translateZ(27px);
}
.vis2-gc-left {
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: rotateY(-90deg) translateZ(27px);
}
.vis2-gc-right {
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotateY(90deg) translateZ(27px);
}
.vis2-gc-top {
  background: rgba(196, 181, 253, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transform: rotateX(90deg) translateZ(27px);
}
/* Cube positions — scattered around the scene */
.gc-1 {
  top: 5%;
  left: 8%;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: vis-cube-rotate 18s linear infinite;
  opacity: 0.85;
}
.gc-2 {
  top: 8%;
  right: 28%;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(45deg);
  animation: vis-cube-rotate 22s linear infinite reverse;
  opacity: 0.65;
  width: 38px;
  height: 38px;
}
.gc-2 .vis2-gc-face {
  width: 38px;
  height: 38px;
}
.gc-2 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(19px);
}
.gc-2 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(19px);
}
.gc-2 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(19px);
}
.gc-2 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(19px);
}
.gc-2 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(19px);
}
.gc-3 {
  bottom: 18%;
  right: 15%;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotateY(20deg);
  animation: vis-cube-rotate 16s linear infinite 2s;
  opacity: 0.75;
  width: 45px;
  height: 45px;
}
.gc-3 .vis2-gc-face {
  width: 45px;
  height: 45px;
}
.gc-3 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(22px);
}
.gc-3 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(22px);
}
.gc-3 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(22px);
}
.gc-3 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(22px);
}
.gc-3 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(22px);
}
.gc-4 {
  top: 60%;
  left: 5%;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(50deg);
  animation: vis-cube-rotate 20s linear infinite 1s;
  opacity: 0.6;
  width: 32px;
  height: 32px;
}
.gc-4 .vis2-gc-face {
  width: 32px;
  height: 32px;
}
.gc-4 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(16px);
}
.gc-4 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(16px);
}
.gc-4 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(16px);
}
.gc-4 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(16px);
}
.gc-4 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(16px);
}
.gc-5 {
  bottom: 32%;
  left: 22%;
  transform-style: preserve-3d;
  transform: rotateX(-22deg) rotateY(38deg);
  animation: vis-cube-rotate 25s linear infinite reverse 3s;
  opacity: 0.5;
  width: 28px;
  height: 28px;
}
.gc-5 .vis2-gc-face {
  width: 28px;
  height: 28px;
}
.gc-5 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(14px);
}
.gc-5 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(14px);
}
.gc-5 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(14px);
}
.gc-5 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(14px);
}
.gc-5 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(14px);
}

/* Dark mode vis2 tweaks */
body.dark-mode .vis2-browser-card,
body.dark-mode .vis2-analytics-card,
body.dark-mode .vis2-icon-card {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
body.dark-mode .vis2-browser-chrome {
  background: rgba(9, 9, 11, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode .vis2-section-label,
body.dark-mode .vis2-analytics-title {
  color: #94a3b8;
}
body.dark-mode .vis2-url-text {
  color: #475569;
}
body.dark-mode .vis2-prog-row {
  background: rgba(99, 102, 241, 0.1);
}
body.dark-mode .vis2-cube-face {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── Trusted By ── */
.intro-trusted {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
  margin-top: 1.5rem;
}
.intro-trusted-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.intro-logos {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.intro-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.intro-logo-item svg {
  color: #64748b;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.intro-logo-item:hover {
  color: #4f46e5;
  transform: translateY(-1px);
}
.intro-logo-item:hover svg {
  color: #4f46e5;
}

/* ── Social Proof Strip ── */
.intro-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.intro-avatars {
  display: flex;
  align-items: center;
}
.intro-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.intro-avatars .intro-avatar:first-child {
  margin-left: 0;
}
.intro-proof-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.intro-stars {
  font-size: 0.8rem;
  color: #f59e0b;
  letter-spacing: 1px;
}
.intro-proof-text span {
  font-size: 0.82rem;
  color: #475569;
  font-weight: 500;
}

/* ── Mini Bar Chart in vis-card ── */
.vis-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  padding: 0 2px;
}
.vis-bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(
    to top,
    rgba(79, 70, 229, 0.25),
    rgba(168, 85, 247, 0.15)
  );
  border-radius: 3px 3px 0 0;
}
.vis-bar.active {
  background: linear-gradient(to top, #4f46e5, #a855f7);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
}

/* ── Metric Card ── */
.vis-card-metric {
  width: 120px;
  padding: 12px 14px;
  border-radius: 16px;
  right: -10px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  animation: vis-graph-float 5s ease-in-out infinite 1s;
  z-index: 4;
}
.vis-metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vis-metric-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: #09090b;
  line-height: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.03em;
}
.vis-metric-value span {
  font-size: 1rem;
  font-weight: 700;
  color: #4f46e5;
}
.vis-metric-delta {
  font-size: 0.67rem;
  font-weight: 600;
  color: #10b981;
}

/* ── Scroll Reveal ── */
.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── Bottom Wave Overlay ── */
.intro-waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}
.intro-wave-svg {
  position: relative;
  display: block;
  width: 100%;
  height: 40px; /* Reduced to close transition gap */
}

/* ── Floating Chat Widget ── */
.intro-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}
.intro-chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #09090b 0%, #1e1b4b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 25px rgba(9, 9, 11, 0.25),
    0 0 12px rgba(79, 70, 229, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-chat-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 14px 30px rgba(9, 9, 11, 0.35),
    0 0 20px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, #18181b 0%, #2e2a75 100%);
}
.intro-chat-btn svg {
  transition: transform 0.3s ease;
}
.intro-chat-btn:hover svg {
  transform: scale(1.1);
}

/* ── Responsive styling ── */

/* Large tablet — keep side-by-side but tighten */
@media (max-width: 1200px) {
  .intro-container {
    gap: 3rem;
    padding: 3rem 2rem 4rem;
    grid-template-columns: 1fr;
  }

  /* Hide the entire right-side visual scene below 1200px */
  .intro-visual-col {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .intro-stat-divider {
    display: none;
  }
  .intro-logos {
    gap: 1.5rem;
  }

  .intro-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .intro-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .intro-btn-primary,
  .intro-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Scale visual to fit */
  .intro-visual-wrap {
    transform: scale(0.78);
    height: 370px;
    transform-origin: center center;
  }

  .vis-card-metric {
    display: none;
  }
}

@media (max-width: 400px) {
  .intro-visual-wrap {
    transform: scale(0.65);
    height: 310px;
    transform-origin: center center;
  }
}

body.dark-mode .vis-metric-value {
  color: #f8fafc;
}
body.dark-mode .vis-metric-label {
  color: #64748b;
}

/* ── Dark Mode ── */
body.dark-mode .intro-section {
  background: #030014;
}
body.dark-mode .intro-bg-glows .glow-1 {
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.3) 0%,
    rgba(99, 102, 241, 0) 70%
  );
}
body.dark-mode .intro-bg-glows .glow-2 {
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(139, 92, 246, 0) 70%
  );
}
body.dark-mode .intro-bg-glows .glow-3 {
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(168, 85, 247, 0) 70%
  );
}
body.dark-mode .intro-bg-dots .intro-dot {
  background: rgba(168, 85, 247, 0.3);
}

body.dark-mode .intro-badge {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  color: #cbd5e1;
}
body.dark-mode .intro-title {
  color: #f8fafc;
}
body.dark-mode .intro-desc {
  color: #94a3b8;
}

body.dark-mode .intro-btn-secondary {
  background: rgba(15, 23, 42, 0.4);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode .intro-btn-secondary:hover {
  background: rgba(15, 23, 42, 0.6);
  color: #ffffff;
  border-color: rgba(99, 102, 241, 0.35);
}

body.dark-mode .intro-stat-num {
  color: #f8fafc;
}
body.dark-mode .intro-stat-label {
  color: #94a3b8;
}
body.dark-mode .intro-stat-divider {
  background: rgba(255, 255, 255, 0.12);
}

body.dark-mode .intro-trusted-label {
  color: #4b5563;
}
body.dark-mode .intro-logo-item {
  color: #4b5563;
}
body.dark-mode .intro-logo-item svg {
  color: #4b5563;
}
body.dark-mode .intro-logo-item:hover {
  color: #a5b4fc;
}
body.dark-mode .intro-logo-item:hover svg {
  color: #a5b4fc;
}

body.dark-mode .intro-waves-container svg path {
  fill: #030014;
}

body.dark-mode .intro-chat-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f5 100%);
  color: #09090b;
  border-color: #ffffff;
  box-shadow:
    0 10px 25px rgba(255, 255, 255, 0.1),
    0 0 12px rgba(165, 180, 252, 0.3);
}
body.dark-mode .intro-chat-btn:hover {
  background: linear-gradient(135deg, #f4f4f5 0%, #e4e4e7 100%);
  box-shadow:
    0 14px 30px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(165, 180, 252, 0.45);
}

/* ── Visual Column Dark Mode Adjustments ── */
body.dark-mode .vis-card {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
body.dark-mode .vis-dot {
  background: rgba(165, 180, 252, 0.3);
}
body.dark-mode .vis-body-title-skele {
  background: linear-gradient(
    90deg,
    rgba(99, 102, 241, 0.25),
    rgba(168, 85, 247, 0.25)
  );
}
body.dark-mode .vis-body-btn-skele {
  background: rgba(99, 102, 241, 0.15);
}
body.dark-mode .vis-content-line {
  background: rgba(99, 102, 241, 0.12);
}
body.dark-mode .vis-card-code {
  color: #a5b4fc;
}
body.dark-mode .cube-face {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 12px rgba(168, 85, 247, 0.15);
}
body.dark-mode .intro-proof-text span {
  color: #475569;
}
body.dark-mode .vis-card-title {
  color: #a5b4fc;
}
body.dark-mode .vis-bar {
  background: linear-gradient(
    to top,
    rgba(99, 102, 241, 0.2),
    rgba(168, 85, 247, 0.1)
  );
}
body.dark-mode .vis-bar.active {
  background: linear-gradient(to top, #6366f1, #a855f7);
}

/* ── Services Section ── */
.services-section {
  position: relative;
  background: #f7f8fc; /* light mode background from user's code */
  padding: 4.5rem 0 8rem; /* aligned padding with upper portion */
  z-index: 2;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}
.services-section * {
  font-family: "Poppins", sans-serif;
}
.services-section .services {
  width: 100%;
  max-width: 1520px; /* aligned horizontally with hero container */
  margin: 0 auto;
  padding: 0 2rem;
}
.services-section .heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.services-section .badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: #ede9fe;
  color: #7c3aed;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.services-section .heading h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem); /* fluid size matching hero */
  line-height: 1.1;
  font-weight: 800;
  color: #08122e;
  letter-spacing: -0.02em;
  margin: 0;
}
.services-section .heading h1 span {
  color: #27a7ff;
}
.services-section .line {
  width: 70px;
  height: 4px;
  border-radius: 10px;
  background: #3b82f6;
  margin: 22px auto;
}
.services-section .heading p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #6b7280;
}
.services-section .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem; /* adjusted to previous gap (40px) */
}
.services-section .card {
  background: #fff;
  border-radius: 28px;
  padding: 3.5rem 3rem; /* adjusted to previous padding */
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* stretch to make left and right columns equal height */
  position: relative;
  overflow: hidden;
  min-height: 370px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Purple */
.services-section .card.purple {
  border: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 20px 50px rgba(99, 102, 241, 0.08);
}
.services-section .card.purple:hover {
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.04),
    0 30px 60px rgba(99, 102, 241, 0.2);
}

/* Card Blue */
.services-section .card.blue {
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 20px 50px rgba(59, 130, 246, 0.08);
}
.services-section .card.blue:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.04),
    0 30px 60px rgba(59, 130, 246, 0.2);
}

/* Card Pink */
.services-section .card.pink {
  border: 1px solid rgba(236, 72, 153, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 20px 50px rgba(236, 72, 153, 0.08);
}
.services-section .card.pink:hover {
  border-color: rgba(236, 72, 153, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.04),
    0 30px 60px rgba(236, 72, 153, 0.2);
}

/* Card Green */
.services-section .card.green {
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.02),
    0 20px 50px rgba(16, 185, 129, 0.08);
}
.services-section .card.green:hover {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.04),
    0 30px 60px rgba(16, 185, 129, 0.2);
}

.services-section .left {
  width: 55%; /* adjusted to previous ratio */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
.services-section .icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  margin-bottom: 24px;
  font-weight: 700;
}
.services-section .purple .icon {
  background: #f3e8ff;
  color: #8b5cf6;
}
.services-section .blue .icon {
  background: #e0ecff;
  color: #3b82f6;
}
.services-section .pink .icon {
  background: #ffe4fb;
  color: #d946ef;
}
.services-section .green .icon {
  background: #dcfce7;
  color: #10b981;
}
.services-section .card h2 {
  font-size: 34px;
  color: #0f172a;
  margin: 0 0 10px;
  font-weight: 700;
}
.services-section .sub {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.services-section .purple .sub {
  color: #8b5cf6;
}
.services-section .blue .sub {
  color: #3b82f6;
}
.services-section .pink .sub {
  color: #d946ef;
}
.services-section .green .sub {
  color: #10b981;
}
.services-section .desc {
  color: #6b7280;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 22px;
}
.services-section ul {
  list-style: none;
  margin-bottom: 28px;
}
.services-section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #475569;
  font-size: 15px;
}
.services-section ul li::before {
  content: "✔";
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: #f1f5f9;
}
.services-section .purple li::before {
  color: #8b5cf6;
}
.services-section .blue li::before {
  color: #3b82f6;
}
.services-section .pink li::before {
  color: #d946ef;
}
.services-section .green li::before {
  color: #10b981;
}
.services-section .btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: auto; /* push button to bottom */
}
.services-section .circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 18px;
}
.services-section .purple .btn {
  color: #8b5cf6;
}
.services-section .blue .btn {
  color: #3b82f6;
}
.services-section .pink .btn {
  color: #d946ef;
}
.services-section .green .btn {
  color: #10b981;
}

/* Right graphic container - absolute bleed setup */
.services-section .right {
  width: 45%;
  position: relative;
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
  margin-right: -3rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.services-section .right img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 15px 35px rgba(31, 38, 135, 0.1));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card 1 mockup placement */
.services-section .purple .right img {
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 108%;
  height: 98%;
  object-fit: contain;
  object-position: bottom right;
}

/* Card 2 mockup placement */
.services-section .blue .right img {
  position: absolute;
  right: 15px;
  bottom: -35px;
  width: 100%;
  height: 102%;
  object-fit: contain;
  object-position: bottom right;
}

/* Card 3 mockup placement */
.services-section .pink .right img {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 108%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* Card 4 mockup placement */
.services-section .green .right img {
  position: absolute;
  right: 0;
  bottom: -25px;
  width: 108%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.services-section .card:hover .right img {
  transform: translate(0, -6px) scale(1.03);
}

.services-section .glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.services-section .purple .glow {
  background: #c084fc;
  right: -50px;
}
.services-section .blue .glow {
  background: #60a5fa;
  right: -50px;
}
.services-section .pink .glow {
  background: #f472b6;
  right: -50px;
}
.services-section .green .glow {
  background: #34d399;
  right: -50px;
}

/* Responsive grid rules */
@media (max-width: 1200px) {
  .services-section .cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-section .card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }
  .services-section .left {
    width: 100%;
  }
  .services-section .right {
    width: 100%;
    height: 280px;
    margin: 0;
  }
  .services-section .right img {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100% !important;
    object-position: center !important;
  }
  .services-section .heading h1 {
    font-size: 50px;
  }
  .services-section ul li {
    justify-content: center;
  }
  .services-section .btn {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 50px 0;
  }
  .services-section .services {
    padding: 0 20px;
  }
  .services-section .heading h1 {
    font-size: 36px;
  }
  .services-section .heading p {
    font-size: 16px;
  }
  .services-section .card {
    padding: 2.5rem 2rem;
  }
  .services-section .card h2 {
    font-size: 30px;
  }
}

/* ── Dark Mode for Services ── */
body.dark-mode .services-section {
  background: #060318;
}
body.dark-mode .services-section .heading h1 {
  color: #f8fafc;
}
body.dark-mode .services-section .heading p {
  color: #94a3b8;
}
body.dark-mode .services-section .badge {
  background: rgba(124, 58, 237, 0.15);
  color: #c084fc;
}
body.dark-mode .services-section .card {
  background: rgba(15, 23, 42, 0.45);
}

body.dark-mode .services-section .card.purple {
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.18);
}
body.dark-mode .services-section .card.purple:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.35);
}

body.dark-mode .services-section .card.blue {
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.18);
}
body.dark-mode .services-section .card.blue:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.35);
}

body.dark-mode .services-section .card.pink {
  border-color: rgba(236, 72, 153, 0.15);
  box-shadow: 0 15px 45px rgba(236, 72, 153, 0.18);
}
body.dark-mode .services-section .card.pink:hover {
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 25px 60px rgba(236, 72, 153, 0.35);
}

body.dark-mode .services-section .card.green {
  border-color: rgba(16, 185, 129, 0.15);
  box-shadow: 0 15px 45px rgba(16, 185, 129, 0.18);
}
body.dark-mode .services-section .card.green:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 25px 60px rgba(16, 185, 129, 0.35);
}

body.dark-mode .services-section .card h2 {
  color: #f8fafc;
}
body.dark-mode .services-section .desc {
  color: #94a3b8;
}
body.dark-mode .services-section ul li {
  color: #cbd5e1;
}
body.dark-mode .services-section ul li::before {
  background: #1e293b;
}
body.dark-mode .services-section .circle {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── Capabilities Section Styles ── */
.capabilities-section {
  position: relative;
  background: #f7f5fb; /* very light lavender-gray as per user styling */
  padding: 80px 0;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}
.capabilities-section * {
  font-family: "Inter", sans-serif;
}
.capabilities-section .section {
  width: 100%;
  max-width: 1520px; /* aligned horizontally with hero container */
  margin: 0 auto;
  padding: 0 2rem;
}
.capabilities-section .top {
  text-align: center;
  margin-bottom: 60px;
}
.capabilities-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: #f1eaff;
  color: #8b5cf6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.capabilities-section .top h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem); /* matching services fluid size */
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #08112b;
  white-space: nowrap; /* keep on single line on desktop */
}
.capabilities-section .top h1 span {
  background: linear-gradient(
    90deg,
    #7c3aed 0%,
    #8b5cf6 20%,
    #a855f7 40%,
    #c084fc 60%,
    #60a5fa 80%,
    #22d3ee 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.capabilities-section .top p {
  max-width: 760px;
  margin: auto;
  font-size: 18px; /* adjusted slightly for premium feel */
  line-height: 1.7;
  color: #667085;
  font-weight: 500;
}
.capabilities-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.capabilities-section .card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  border: 1px solid #ece7f7;
  border-radius: 30px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
}
.capabilities-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
}
.capabilities-section .icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #f3edff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.capabilities-section .icon svg {
  width: 30px;
  height: 30px;
  stroke: #8b5cf6;
}
.capabilities-section .card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #0f172a;
}
.capabilities-section .card p {
  color: #5f6677;
  font-size: 15px;
  line-height: 1.9;
  max-width: 95%;
  margin: 0;
}
.capabilities-section .arrow {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3edff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  z-index: 2;
}
.capabilities-section .arrow svg {
  width: 18px;
  height: 18px;
  stroke: #8b5cf6;
}
.capabilities-section .card:hover .arrow {
  transform: translateX(5px);
  background: #8b5cf6;
}
.capabilities-section .card:hover .arrow svg {
  stroke: #ffffff;
}

/* Background Shapes */
.capabilities-section .shape {
  position: absolute;
  opacity: 0.22;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  z-index: 0;
}
.capabilities-section .shape.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
}
.capabilities-section .shape.graph {
  width: 130px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e9d5ff, #c4b5fd);
  transform: rotate(-8deg);
}
.capabilities-section .shape.wave {
  width: 140px;
  height: 55px;
  border: 10px solid #d8b4fe;
  border-top: none;
  border-left: none;
  border-radius: 100px;
  transform: rotate(-12deg);
}
.capabilities-section .shape.blocks {
  width: 120px;
  height: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.capabilities-section .shape.blocks div {
  background: #d8b4fe;
  border-radius: 16px;
}
.capabilities-section .shape.chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100px;
  height: 100px;
}
.capabilities-section .shape.chart div {
  width: 18px;
  background: #c4b5fd;
  border-radius: 10px;
}
.capabilities-section .shape.chart div:nth-child(1) {
  height: 35px;
}
.capabilities-section .shape.chart div:nth-child(2) {
  height: 52px;
}
.capabilities-section .shape.chart div:nth-child(3) {
  height: 70px;
}
.capabilities-section .shape.chart div:nth-child(4) {
  height: 92px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .capabilities-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-section .top h1 {
    font-size: 50px;
    white-space: normal; /* allow wrapping on smaller viewports */
  }
  .capabilities-section .top p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .capabilities-section {
    padding: 50px 0;
  }
  .capabilities-section .section {
    padding: 0 20px;
  }
  .capabilities-section .grid {
    grid-template-columns: 1fr;
  }
  .capabilities-section .top h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .capabilities-section .top p {
    font-size: 17px;
  }
  .capabilities-section .card {
    min-height: auto;
    padding-bottom: 80px; /* space for absolute arrow */
  }
}

/* ── Dark Mode for Capabilities ── */
body.dark-mode .capabilities-section {
  background: #040112;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .capabilities-section .top h1 {
  color: #f8fafc;
}
body.dark-mode .capabilities-section .top p {
  color: #94a3b8;
}
body.dark-mode .capabilities-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .capabilities-section .card {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .capabilities-section .card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.18);
}
body.dark-mode .capabilities-section .card h3 {
  color: #f8fafc;
}
body.dark-mode .capabilities-section .card p {
  color: #cbd5e1;
}
body.dark-mode .capabilities-section .icon {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .capabilities-section .icon svg {
  stroke: #c084fc;
}
body.dark-mode .capabilities-section .arrow {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .capabilities-section .arrow svg {
  stroke: #c084fc;
}
body.dark-mode .capabilities-section .card:hover .arrow {
  background: #8b5cf6;
}
body.dark-mode .capabilities-section .card:hover .arrow svg {
  stroke: #ffffff;
}
body.dark-mode .capabilities-section .shape.graph {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15),
    rgba(139, 92, 246, 0.15)
  );
}
body.dark-mode .capabilities-section .shape.circle {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
}
body.dark-mode .capabilities-section .shape.wave {
  border-color: rgba(168, 85, 247, 0.18);
}
body.dark-mode .capabilities-section .shape.blocks div {
  background: rgba(168, 85, 247, 0.18);
}
body.dark-mode .capabilities-section .shape.chart div {
  background: rgba(168, 85, 247, 0.18);
}

/* ── Process Section ── */
.process-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.process-section * {
  box-sizing: border-box;
}

.process-section .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   TOP
========================= */

.process-section .top {
  text-align: center;
  margin-bottom: 70px;
  animation: process-fadeUp 1s ease;
}

.process-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  background: #f1eaff;
  border: 1px solid #e7dcff;
  backdrop-filter: blur(20px);
  color: #8b5cf6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.08);
}

.process-section .top h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #07112f;
}

.process-section .top h1 span {
  background: linear-gradient(
    90deg,
    #7c3aed 0%,
    #8b5cf6 20%,
    #a855f7 40%,
    #c084fc 60%,
    #60a5fa 80%,
    #3b82f6 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.process-section .top p {
  max-width: 820px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   GRID
========================= */

.process-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* =========================
   CARD
========================= */

.process-section .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 165px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  border: 1px solid #e7e7f5;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  animation: process-fadeUp 1s ease;
}

.process-section .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
}

/* glowing background */

.process-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.04),
    rgba(96, 165, 250, 0.03)
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.process-section .card:hover::before {
  opacity: 1;
}

/* =========================
   LEFT
========================= */

.process-section .left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* =========================
   NUMBER
========================= */

.process-section .number {
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  min-width: 90px;
  background: linear-gradient(180deg, #8b5cf6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   DIVIDER
========================= */

.process-section .divider {
  width: 1px;
  height: 90px;
  background: #ececf5;
}

/* =========================
   CONTENT
========================= */

.process-section .content h3 {
  font-size: 24px;
  font-weight: 855;
  margin-bottom: 12px;
  color: #07112f;
  letter-spacing: -0.02em;
}

.process-section .content p {
  color: #5f6677;
  line-height: 1.8;
  font-size: 16px;
  max-width: 380px;
}

/* =========================
   ICON BOX
========================= */

.process-section .icon-box {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f7f1ff, #eef2ff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  animation: process-float 4s ease-in-out infinite;
}

.process-section .icon-box::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: rotate(25deg);
  animation: process-shine 4s linear infinite;
}

.process-section .icon-box svg {
  width: 40px;
  height: 40px;
  stroke: #8b5cf6;
  position: relative;
  z-index: 2;
}

/* =========================
   FOOTER
========================= */

.process-section .footer {
  margin-top: 55px;
  max-width: 1050px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  animation: process-fadeUp 1.2s ease;
}

.process-section .footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #07112f;
}

.process-section .star {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #60a5fa);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  animation: process-rotate 5s linear infinite;
  font-size: 20px;
}

.process-section .footer-divider {
  width: 1px;
  height: 28px;
  background: #ececf5;
}

.process-section .footer p {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes process-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes process-shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }
  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

@keyframes process-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .process-section .top h1 {
    font-size: 50px;
  }
  .process-section .top p {
    font-size: 20px;
  }
  .process-section .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 60px 0;
  }
  .process-section .top h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .process-section .top p {
    font-size: 17px;
  }
  .process-section .card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  .process-section .left {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .process-section .divider {
    width: 100%;
    height: 1px;
    margin: 10px 0;
  }
  .process-section .footer {
    flex-direction: column;
    text-align: center;
    border-radius: 30px;
    padding: 20px;
    gap: 15px;
  }
  .process-section .footer-divider {
    width: 100%;
    height: 1px;
  }
}

/* ── Dark Mode for Process Section ── */
body.dark-mode .process-section {
  background: #030014;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .process-section .top h1 {
  color: #f8fafc;
}
body.dark-mode .process-section .top p {
  color: #94a3b8;
}
body.dark-mode .process-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .process-section .card {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .process-section .card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.18);
}
body.dark-mode .process-section .card h3 {
  color: #f8fafc;
}
body.dark-mode .process-section .card p {
  color: #cbd5e1;
}
body.dark-mode .process-section .divider {
  background: rgba(255, 255, 255, 0.08);
}
body.dark-mode .process-section .icon-box {
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.12),
    rgba(96, 165, 250, 0.05)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body.dark-mode .process-section .icon-box svg {
  stroke: #c084fc;
}
body.dark-mode .process-section .footer {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .process-section .footer-left {
  color: #f8fafc;
}
body.dark-mode .process-section .footer p {
  color: #cbd5e1;
}
body.dark-mode .process-section .footer-divider {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Tools Section ── */
.tools-section {
  position: relative;
  background: radial-gradient(circle at top, #ffffff, #f5f5fb);
  padding: 100px 0 120px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.tools-section * {
  box-sizing: border-box;
}

.tools-section .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   TOP
========================= */

.tools-section .top {
  text-align: center;
  margin-bottom: 60px;
  animation: tools-fadeUp 1s ease;
}

.tools-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8dcff;
  backdrop-filter: blur(20px);
  color: #8b5cf6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 26px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
}

.tools-section .top h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: #07112f;
}

.tools-section .top h1 span {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #60a5fa 20%,
    #818cf8 40%,
    #8b5cf6 60%,
    #a855f7 80%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.tools-section .top p {
  max-width: 850px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   GRID
========================= */

.tools-section .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.tools-section .card {
  position: relative;
  min-height: 255px;
  padding: 34px 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: tools-fadeUp 1s ease;
}

.tools-section .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}

.tools-section .card.active {
  border: 1.5px solid #c8b6ff;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12);
}

.tools-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.04),
    rgba(96, 165, 250, 0.03)
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.tools-section .card:hover::before {
  opacity: 1;
}

/* =========================
   ICON BOX
========================= */

.tools-section .icon-box {
  width: 86px;
  height: 86px;
  margin: auto auto 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f7ff, #eef4ff);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  animation: tools-float 4s ease-in-out infinite;
}

.tools-section .icon-box::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: rotate(25deg);
  animation: tools-shine 4s linear infinite;
}

.tools-section .icon {
  font-size: 48px;
  position: relative;
  z-index: 2;
}

/* =========================
   TEXT
========================= */

.tools-section .card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #07112f;
}

.tools-section .card p {
  color: #5f6677;
  line-height: 1.7;
  font-size: 15px;
  max-width: 220px;
  margin: auto;
}

/* =========================
   FOOTER
========================= */

.tools-section .footer {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #6b7280;
  font-size: 18px;
  font-weight: 600;
  animation: tools-fadeUp 1.2s ease;
}

.tools-section .footer strong {
  background: linear-gradient(90deg, #8b5cf6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.tools-section .footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #60a5fa);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
  animation: tools-pulse 2s infinite;
  font-size: 20px;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes tools-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tools-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes tools-shine {
  0% {
    transform: translateX(-150%) rotate(25deg);
  }
  100% {
    transform: translateX(150%) rotate(25deg);
  }
}

@keyframes tools-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(139, 92, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
  .tools-section .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .tools-section .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tools-section .top h1 {
    font-size: 50px;
  }
  .tools-section .top p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .tools-section {
    padding: 60px 0;
  }
  .tools-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-section .top h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }
  .tools-section .top p {
    font-size: 17px;
  }
  .tools-section .footer {
    flex-direction: column;
    text-align: center;
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .tools-section .grid {
    grid-template-columns: 1fr;
  }
}

/* ── Dark Mode for Tools Section ── */
body.dark-mode .tools-section {
  background: radial-gradient(circle at top, #040112, #02000a);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .tools-section .top h1 {
  color: #f8fafc;
}
body.dark-mode .tools-section .top p {
  color: #94a3b8;
}
body.dark-mode .tools-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .tools-section .card {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .tools-section .card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.2);
}
body.dark-mode .tools-section .card.active {
  border: 1.5px solid #a855f7;
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}
body.dark-mode .tools-section .card h3 {
  color: #f8fafc;
}
body.dark-mode .tools-section .card p {
  color: #cbd5e1;
}
body.dark-mode .tools-section .icon-box {
  background: linear-gradient(
    180deg,
    rgba(139, 92, 246, 0.12),
    rgba(96, 165, 250, 0.05)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body.dark-mode .tools-section .footer {
  color: #94a3b8;
}

/* ── Testimonials Section ── */
.testimonials-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.testimonials-section * {
  box-sizing: border-box;
}

.testimonials-section .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   TOP
========================= */

.testimonials-section .top {
  text-align: center;
  margin-bottom: 65px;
  animation: testimonials-fadeUp 1s ease;
}

.testimonials-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8dcff;
  backdrop-filter: blur(20px);
  color: #8b5cf6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 26px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
}

.testimonials-section .top h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: #07112f;
}

.testimonials-section .top h1 span {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #60a5fa 20%,
    #818cf8 40%,
    #8b5cf6 60%,
    #a855f7 80%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.testimonials-section .top p {
  max-width: 950px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   GRID
========================= */

.testimonials-section .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =========================
   CARD
========================= */

.testimonials-section .card {
  position: relative;
  min-height: 430px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 34px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: testimonials-fadeUp 1s ease;
  display: flex;
  flex-direction: column;
}

.testimonials-section .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}

.testimonials-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.04),
    rgba(96, 165, 250, 0.03)
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.testimonials-section .card:hover::before {
  opacity: 1;
}

/* =========================
   QUOTE
========================= */

.testimonials-section .quote {
  font-size: 90px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
}

/* colors */

.testimonials-section .purple .quote {
  color: #8b5cf6;
}

.testimonials-section .blue .quote {
  color: #3b82f6;
}

.testimonials-section .green .quote {
  color: #10b981;
}

.testimonials-section .orange .quote {
  color: #f97316;
}

/* =========================
   TEXT
========================= */

.testimonials-section .text {
  color: #4b5563;
  font-size: 18px;
  line-height: 2;
  position: relative;
  z-index: 2;
  margin-bottom: 42px;
  flex-grow: 1;
}

/* =========================
   DIVIDER
========================= */

.testimonials-section .divider {
  width: 100%;
  height: 1px;
  background: #ececf5;
  margin-bottom: 26px;
}

/* =========================
   USER
========================= */

.testimonials-section .user {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

/* avatar */

.testimonials-section .avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  animation: testimonials-float 4s ease-in-out infinite;
}

.testimonials-section .purple .avatar {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.testimonials-section .blue .avatar {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.testimonials-section .green .avatar {
  background: linear-gradient(135deg, #059669, #10b981);
}

.testimonials-section .orange .avatar {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

/* user info */

.testimonials-section .info h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #07112f;
}

.testimonials-section .info p {
  color: #6b7280;
  font-size: 16px;
}

/* =========================
   FOOTER
========================= */

.testimonials-section .footer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  animation: testimonials-fadeUp 1.2s ease;
}

/* avatars */

.testimonials-section .people {
  display: flex;
  align-items: center;
}

.testimonials-section .people img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonials-section .people img:hover {
  transform: translateY(-5px);
}

.testimonials-section .people img:first-child {
  margin-left: 0;
}

/* star */

.testimonials-section .star {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  margin-left: -10px;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
  animation: testimonials-pulse 2s infinite;
}

/* footer text */

.testimonials-section .footer-text {
  color: #6b7280;
  font-size: 18px;
  font-weight: 500;
}

.testimonials-section .footer-text strong {
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes testimonials-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonials-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes testimonials-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.3);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(139, 92, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px) {
  .testimonials-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-section .top h1 {
    font-size: 68px;
  }
  .testimonials-section .top p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-section .grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section .top h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }
  .testimonials-section .top p {
    font-size: 17px;
  }
  .testimonials-section .footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .testimonials-section .footer-text {
    font-size: 18px;
  }
}

/* ── Dark Mode for Testimonials Section ── */
body.dark-mode .testimonials-section {
  background: #030014;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .testimonials-section .top h1 {
  color: #f8fafc;
}
body.dark-mode .testimonials-section .top p {
  color: #94a3b8;
}
body.dark-mode .testimonials-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .testimonials-section .card {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .testimonials-section .card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.18);
}
body.dark-mode .testimonials-section .text {
  color: #cbd5e1;
}
body.dark-mode .testimonials-section .divider {
  background: rgba(255, 255, 255, 0.08);
}
body.dark-mode .testimonials-section .info h3 {
  color: #f8fafc;
}
body.dark-mode .testimonials-section .info p {
  color: #94a3b8;
}
body.dark-mode .testimonials-section .people img {
  border-color: #0c0a24;
}
body.dark-mode .testimonials-section .footer-text {
  color: #cbd5e1;
}

/* ── Growth Section ── */
.growth-section {
  position: relative;
  background: #ffffff;
  padding: 70px 0 80px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.growth-section * {
  box-sizing: border-box;
}

.growth-section .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   TOP
========================= */

.growth-section .top {
  text-align: center;
  margin-bottom: 40px;
  animation: growth-fadeUp 1s ease;
}

.growth-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8dcff;
  backdrop-filter: blur(20px);
  color: #7c3aed;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
}

.growth-section .top h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: #07112f;
}

.growth-section .top h1 span {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #60a5fa 20%,
    #818cf8 40%,
    #8b5cf6 60%,
    #a855f7 80%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.growth-section .top p {
  max-width: 820px;
  margin: auto;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   GRID
========================= */

.growth-section .grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 20px;
}

/* =========================
   LEFT CARD
========================= */

.growth-section .left-card {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(135deg, #2d1df5, #5b21ff, #7c3aed);
  color: #fff;
  box-shadow: 0 20px 50px rgba(91, 33, 255, 0.2);
  animation: growth-fadeUp 1s ease;
  display: flex;
  flex-direction: column;
}

/* glow */
.growth-section .left-card::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18),
    transparent 70%
  );
  right: -200px;
  bottom: -200px;
  pointer-events: none;
}

/* particles */
.growth-section .left-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
}

/* icon */
.growth-section .big-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  animation: growth-float 4s ease-in-out infinite;
}

.growth-section .big-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

/* text */
.growth-section .left-card h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.growth-section .line {
  width: 54px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.growth-section .left-card p {
  position: relative;
  z-index: 2;
  font-size: 15px;
  line-height: 1.8;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.92);
}

/* people */
.growth-section .people {
  display: flex;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.growth-section .people img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  object-fit: cover;
  margin-left: -10px;
  transition: all 0.3s ease;
}

.growth-section .people img:first-child {
  margin-left: 0;
}

.growth-section .people img:hover {
  transform: translateY(-4px);
}

.growth-section .plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-left: -10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}

/* trusted */
.growth-section .trusted {
  margin-top: 16px;
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.growth-section .trusted strong {
  color: #fff;
}

/* =========================
   RIGHT
========================= */

.growth-section .right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* top cards */
.growth-section .top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* small card */
.growth-section .small-card {
  position: relative;
  min-height: 240px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: growth-fadeUp 1s ease;
  display: flex;
  flex-direction: column;
}

.growth-section .small-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 50px rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}

/* icon */
.growth-section .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f1ff, #eef2ff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  animation: growth-float 4s ease-in-out infinite;
}

.growth-section .icon svg {
  width: 26px;
  height: 26px;
  stroke: #7c3aed;
}

/* tag */
.growth-section .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4edff;
  color: #8b5cf6;
  font-size: 11px;
  font-weight: 700;
}

/* small text */
.growth-section .small-card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 10px;
  color: #07112f;
  letter-spacing: -0.02em;
}

.growth-section .small-card p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.8;
}

/* arrow */
.growth-section .arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5efff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  transition: all 0.3s ease;
}

.growth-section .arrow svg {
  width: 18px;
  height: 18px;
  stroke: #7c3aed;
}

.growth-section .small-card:hover .arrow {
  transform: translateX(6px);
  background: #7c3aed;
}

.growth-section .small-card:hover .arrow svg {
  stroke: #ffffff;
}

/* =========================
   GRAPH CARD
========================= */

.growth-section .graph-card {
  position: relative;
  min-height: 190px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #020617, #050b2f, #111827);
  padding: 26px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.22);
  animation: growth-fadeUp 1.2s ease;
}

/* graph glow */
.growth-section .graph-card::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
  right: -120px;
  top: -180px;
  pointer-events: none;
}

/* graph */
.growth-section .graph {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
}

.growth-section .graph svg {
  width: 100%;
  height: 100%;
}

/* graph icon */
.growth-section .graph-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.growth-section .graph-icon svg {
  width: 26px;
  height: 26px;
  stroke: #a78bfa;
}

/* graph text */
.growth-section .graph-card h2 {
  position: relative;
  z-index: 2;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.growth-section .graph-card h3 {
  position: relative;
  z-index: 2;
  color: #a78bfa;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 700;
}

.growth-section .graph-card p {
  position: relative;
  z-index: 2;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 13px;
}

/* =========================
   BOTTOM FEATURES
========================= */

.growth-section .features {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.growth-section .feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: growth-fadeUp 1.2s ease;
  position: relative;
}

.growth-section .feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7f1ff, #eef2ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.growth-section .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #7c3aed;
}

.growth-section .feature-text h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #07112f;
  letter-spacing: -0.02em;
}

.growth-section .feature-text p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 13px;
}

/* divider */
.growth-section .feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 8px;
  width: 1px;
  height: 60px;
  background: #ececf5;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes growth-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growth-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px) {
  .growth-section .grid {
    grid-template-columns: 1fr;
  }
  .growth-section .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .growth-section .feature:not(:last-child)::after {
    display: none;
  }
  .growth-section .top h1 {
    font-size: 50px;
  }
  .growth-section .top p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .growth-section {
    padding: 50px 0;
  }
  .growth-section .top h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .growth-section .top p {
    font-size: 14px;
  }
  .growth-section .top-cards {
    grid-template-columns: 1fr;
  }
  .growth-section .features {
    grid-template-columns: 1fr;
  }
  .growth-section .left-card h2 {
    font-size: 32px;
  }
}

/* ── Dark Mode for Growth Section ── */
body.dark-mode .growth-section {
  background: #060318;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .growth-section .top h1 {
  color: #f8fafc;
}
body.dark-mode .growth-section .top p {
  color: #94a3b8;
}
body.dark-mode .growth-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .growth-section .small-card {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .growth-section .small-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.18);
}
body.dark-mode .growth-section .small-card h3 {
  color: #f8fafc;
}
body.dark-mode .growth-section .small-card p {
  color: #94a3b8;
}
body.dark-mode .growth-section .small-card .icon {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .growth-section .small-card .icon svg {
  stroke: #c084fc;
}
body.dark-mode .growth-section .small-card .tag {
  background: rgba(139, 92, 246, 0.18);
  color: #c084fc;
}
body.dark-mode .growth-section .small-card .arrow {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .growth-section .small-card .arrow svg {
  stroke: #c084fc;
}
body.dark-mode .growth-section .small-card:hover .arrow {
  background: #8b5cf6;
}
body.dark-mode .growth-section .small-card:hover .arrow svg {
  stroke: #ffffff;
}
body.dark-mode .growth-section .feature-text h4 {
  color: #f8fafc;
}
body.dark-mode .growth-section .feature-text p {
  color: #94a3b8;
}
body.dark-mode .growth-section .feature-icon {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .growth-section .feature-icon svg {
  stroke: #c084fc;
}
body.dark-mode .growth-section .feature:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Contact Section ── */
.contact-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 120px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.contact-section * {
  box-sizing: border-box;
}

.contact-section .container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   LEFT
========================= */

.contact-section .left {
  animation: contact-fadeUp 1s ease;
}

/* badge */

.contact-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8dcff;
  backdrop-filter: blur(20px);
  color: #7c3aed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
}

/* title */

.contact-section .left h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 34px;
  color: #07112f;
}

.contact-section .left h1 span {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #60a5fa 20%,
    #818cf8 40%,
    #8b5cf6 60%,
    #a855f7 80%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* text */

.contact-section .desc {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 42px;
}

/* features */

.contact-section .features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}

.contact-section .feature {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-section .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
  animation: contact-pulse 2s infinite;
  font-size: 20px;
  color: #fff;
}

.contact-section .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.contact-section .feature p {
  font-size: 20px;
  color: #4b5563;
  font-weight: 500;
}

/* divider */

.contact-section .divider {
  width: 260px;
  height: 1px;
  background: #e7e7f4;
  margin-bottom: 34px;
}

/* email */

.contact-section .email-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-section .email-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7f1ff, #eef2ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .email-icon svg {
  width: 28px;
  height: 28px;
  stroke: #7c3aed;
}

.contact-section .email-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #07112f;
}

.contact-section .email-text p {
  color: #6b7280;
  font-size: 17px;
}

/* =========================
   RIGHT FORM
========================= */

.contact-section .form-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
  animation: contact-fadeUp 1.2s ease;
}

/* form */

.contact-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-section .input-group {
  margin-bottom: 24px;
}

.contact-section .input-group.full {
  grid-column: 1/-1;
}

/* labels */

.contact-section label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

/* inputs */

.contact-section .input {
  position: relative;
}

.contact-section .input input,
.contact-section .input textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #fff;
  border: 1px solid #e8e8f3;
  border-radius: 18px;
  padding: 18px 20px 18px 58px;
  font-size: 16px;
  color: #111827;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.contact-section .input textarea {
  min-height: 170px;
  resize: none;
  padding-top: 20px;
}

.contact-section .input input:focus,
.contact-section .input textarea:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

/* icons */

.contact-section .input svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  stroke: #8b5cf6;
}

.contact-section .input textarea + svg {
  top: 28px;
  transform: none;
}

/* info */

.contact-section .info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 14px 0 34px;
}

.contact-section .info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-section .info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f6f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #8b5cf6;
}

.contact-section .info p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* button */

.contact-section button {
  width: 100%;
  border: none;
  outline: none;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #9333ea);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.25);
}

.contact-section button:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.35);
}

.contact-section button svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* footer text */

.contact-section .bottom-text {
  text-align: center;
  margin-top: 18px;
  color: #6b7280;
  font-size: 16px;
}

.contact-section .bottom-text span {
  color: #7c3aed;
  font-weight: 600;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes contact-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.3);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1300px) {
  .contact-section .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-section .left h1 {
    font-size: 70px;
  }
  .contact-section .desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-section .left h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .contact-section .desc {
    font-size: 17px;
  }
  .contact-section .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-section .info-row {
    grid-template-columns: 1fr 1fr;
  }
  .contact-section .form-box {
    padding: 28px;
  }
}

@media (max-width: 520px) {
  .contact-section .info-row {
    grid-template-columns: 1fr;
  }
}

/* ── Dark Mode for Contact Section ── */
body.dark-mode .contact-section {
  background: #030014;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
body.dark-mode .contact-section .left h1 {
  color: #f8fafc;
}
body.dark-mode .contact-section .desc {
  color: #94a3b8;
}
body.dark-mode .contact-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}
body.dark-mode .contact-section .feature p {
  color: #cbd5e1;
}
body.dark-mode .contact-section .divider {
  background: rgba(255, 255, 255, 0.08);
}
body.dark-mode .contact-section .email-icon {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .contact-section .email-icon svg {
  stroke: #c084fc;
}
body.dark-mode .contact-section .email-text h4 {
  color: #f8fafc;
}
body.dark-mode .contact-section .email-text p {
  color: #94a3b8;
}
body.dark-mode .contact-section .form-box {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(139, 92, 246, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
body.dark-mode .contact-section label {
  color: #f8fafc;
}
body.dark-mode .contact-section .input input,
body.dark-mode .contact-section .input textarea {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}
body.dark-mode .contact-section .input input:focus,
body.dark-mode .contact-section .input textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}
body.dark-mode .contact-section .input svg {
  stroke: #c084fc;
}
body.dark-mode .contact-section .info p {
  color: #cbd5e1;
}
body.dark-mode .contact-section .info-icon {
  background: rgba(139, 92, 246, 0.12);
}
body.dark-mode .contact-section .info-icon svg {
  stroke: #c084fc;
}
body.dark-mode .contact-section button {
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}
body.dark-mode .contact-section button:hover {
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}
body.dark-mode .contact-section .bottom-text {
  color: #cbd5e1;
}
body.dark-mode .contact-section .bottom-text span {
  color: #c084fc;
}

/* ── FAQ Section ── */
.faq-section {
  position: relative;
  background: radial-gradient(circle at top, #ffffff, #f5f5fb);
  color: #0f172a;
  overflow: hidden;
  padding: 100px 20px 120px;
  font-family: "Inter", sans-serif;
  z-index: 2;
  border-top: 1px solid rgba(79, 70, 229, 0.04);
}

.faq-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Background dots decoration */
.faq-section::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 80px;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(#d8ccff 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(#d8ccff 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
}

.faq-section .container {
  max-width: 1520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

/* =========================
   TOP
========================= */
.faq-section .top {
  text-align: center;
  margin-bottom: 52px;
  animation: faq-fadeUp 1s ease;
}

.faq-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e8dcff;
  backdrop-filter: blur(20px);
  color: #7c3aed;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.08);
}

.faq-section .top h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #07112f;
}

.faq-section .top h1 span {
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #60a5fa 20%,
    #818cf8 40%,
    #8b5cf6 60%,
    #a855f7 80%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.faq-section .top p {
  color: #6b7280;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  line-height: 1.7;
  max-width: 820px;
  margin: auto;
}

/* =========================
   FAQ
========================= */
.faq-section .faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}

.faq-section .faq-item {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: faq-fadeUp 1s ease;
}

.faq-section .faq-item.active {
  border-color: #c8b6ff;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
}

.faq-section .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  cursor: pointer;
}

.faq-section .faq-left {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
}

.faq-section .icon-box {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f1ff, #eef2ff);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: faq-float 4s ease-in-out infinite;
}

.faq-section .icon-box svg {
  width: 30px;
  height: 30px;
  stroke: #8b5cf6;
}

.faq-section .question {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  color: #07112f;
}

.faq-section .arrow {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ececf5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.faq-section .arrow svg {
  width: 22px;
  height: 22px;
  stroke: #7c3aed;
  transition: all 0.4s;
}

.faq-section .faq-item.active .arrow {
  background: #f6f0ff;
  border-color: #e8dcff;
}

.faq-section .faq-item.active .arrow svg {
  transform: rotate(180deg);
}

.faq-section .faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    padding 0.5s ease;
}

.faq-section .faq-item.active .faq-content {
  max-height: 320px;
}

.faq-section .answer {
  padding: 0 30px 34px 118px;
  color: #6b7280;
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  line-height: 2;
}

/* =========================
   FOOTER
========================= */
.faq-section .footer {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  border: 1px solid #ececf5;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  animation: faq-fadeUp 1.2s ease;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section .footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.faq-section .support-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.25);
  animation: faq-pulse 2s infinite;
}

.faq-section .support-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

.faq-section .footer-text h3 {
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: #07112f;
}

.faq-section .footer-text p {
  color: #6b7280;
  font-size: clamp(0.85rem, 1.2vw, 1.125rem);
}

.faq-section .footer-divider {
  width: 1px;
  height: 54px;
  background: #ececf5;
}

.faq-section .contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #7c3aed;
  transition: all 0.3s;
}

.faq-section .contact-btn:hover {
  transform: translateX(6px);
}

.faq-section .contact-btn svg {
  width: 24px;
  height: 24px;
  stroke: #7c3aed;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes faq-fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faq-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes faq-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.25);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .faq-section .answer {
    padding: 0 30px 34px 118px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }
  .faq-section::before,
  .faq-section::after {
    display: none; /* Hide decorative background dots on mobile to keep it clean */
  }
  .faq-section .faq-header {
    padding: 22px;
  }
  .faq-section .faq-left {
    align-items: flex-start;
  }
  .faq-section .icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  .faq-section .icon-box svg {
    width: 24px;
    height: 24px;
  }
  .faq-section .answer {
    padding: 0 22px 28px 22px;
  }
  .faq-section .footer {
    flex-direction: column;
    text-align: center;
    border-radius: 32px;
    gap: 20px;
    padding: 24px;
  }
  .faq-section .footer-divider {
    width: 100%;
    height: 1px;
  }
}

/* ── Dark Mode for FAQ Section ── */
body.dark-mode .faq-section {
  background: radial-gradient(circle at top, #0b0826, #030014);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

body.dark-mode .faq-section::before,
body.dark-mode .faq-section::after {
  background-image: radial-gradient(
    rgba(139, 92, 246, 0.15) 1.4px,
    transparent 1.4px
  );
}

body.dark-mode .faq-section .badge {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c084fc;
}

body.dark-mode .faq-section .top h1 {
  color: #f8fafc;
}

body.dark-mode .faq-section .top p {
  color: #94a3b8;
}

body.dark-mode .faq-section .question {
  color: #f8fafc;
}

body.dark-mode .faq-section .answer {
  color: #cbd5e1;
}

body.dark-mode .faq-section .faq-item {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .faq-section .faq-item.active {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

body.dark-mode .faq-section .icon-box {
  background: rgba(139, 92, 246, 0.12);
}

body.dark-mode .faq-section .icon-box svg {
  stroke: #c084fc;
}

body.dark-mode .faq-section .arrow {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .faq-section .arrow svg {
  stroke: #c084fc;
}

body.dark-mode .faq-section .faq-item.active .arrow {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.3);
}

body.dark-mode .faq-section .footer {
  background: rgba(15, 23, 42, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .faq-section .footer-text h3 {
  color: #f8fafc;
}

body.dark-mode .faq-section .footer-text p {
  color: #94a3b8;
}

body.dark-mode .faq-section .footer-divider {
  background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .faq-section .contact-btn {
  color: #c084fc;
}

body.dark-mode .faq-section .contact-btn svg {
  stroke: #c084fc;
}

/* ── Global Typography & Layout Upgrades ── */
html {
  font-size: 87.5%; /* ~90% zoom feel — scales all rem values down uniformly */
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

/* Uniform typography override for headings to match the Hero section font */
.services-section h1,
.services-section h2,
.services-section h3,
.services-section h4,
.capabilities-section h1,
.capabilities-section h2,
.capabilities-section h3,
.capabilities-section h4,
.process-section h1,
.process-section h2,
.process-section h3,
.process-section h4,
.tools-section h1,
.tools-section h2,
.tools-section h3,
.tools-section h4,
.testimonials-section h1,
.testimonials-section h2,
.testimonials-section h3,
.testimonials-section h4,
.growth-section h1,
.growth-section h2,
.growth-section h3,
.growth-section h4,
.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.faq-section h1,
.faq-section h2,
.faq-section h3,
.faq-section h4,
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
}

/* ── Custom px-based Scale Down Overrides ── */

/* Contact Section px scaling */
.contact-section label {
  font-size: 14px !important;
}
.contact-section .input input,
.contact-section .input textarea {
  font-size: 14px !important;
}
.contact-section button {
  font-size: 16px !important;
}

/* FAQ Section px scaling */
.faq-section .badge {
  font-size: 11px !important;
}
.faq-section .question {
  font-size: clamp(1rem, 1.8vw, 1.45rem) !important;
}
.faq-section .answer {
  font-size: clamp(0.85rem, 1.3vw, 1.1rem) !important;
}
.faq-section .footer-text h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.4rem) !important;
}
.faq-section .contact-btn {
  font-size: clamp(0.95rem, 1.6vw, 1.4rem) !important;
}


/* ============================================
   ENHANCED HERO VISUAL — AI Platform Scene
   Reference: 3D browser card + analytics + code
   editor + circuit cube + floating glass cubes
   ============================================ */

/* Wrap height upgrade */
.intro-visual-wrap {
  height: 520px !important;
  overflow: visible;
}

/* Second scene glow */
.vis-scene-glow-2 {
  position: absolute;
  top: 60%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.18) 0%,
    rgba(139, 92, 246, 0.08) 50%,
    transparent 70%
  );
  filter: blur(35px);
  pointer-events: none;
  z-index: 1;
}

/* SVG network background */
.vis-network-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ── BROWSER CARD ── */
.vis2-browser-card {
  position: absolute;
    top: 10%;
    left: 27%;
    height: 282px;
  transform: translate(-44%, -52%);
  width: min(360px, 88%);
  background: rgba(248, 248, 255, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 20px 60px rgba(79, 70, 229, 0.12),
    0 8px 20px rgba(31, 38, 135, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  overflow: hidden;
  z-index: 6;
  animation: vis-main-float 6s ease-in-out infinite;
}

.vis2-browser-chrome {
  background: rgba(237, 236, 255, 0.8);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vis2-chrome-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}
.vis2-cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.vis2-chrome-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: rgba(99, 102, 241, 0.6);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}
.vis2-url-text {
  font-size: 0.6rem;
  opacity: 0.8;
}
.vis2-chrome-actions {
  flex-shrink: 0;
}

.vis2-browser-body {
  display: flex;
  gap: 12px;
  padding: 14px 16px 16px;
}

/* Left panel */
.vis2-panel-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vis2-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1e1b4b;
  letter-spacing: 0.01em;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 2px;
}
.vis2-prog-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vis2-prog-row {
  height: 8px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.vis2-prog-bar {
  height: 100%;
  width: var(--pw, 60%);
  background: var(--pc, linear-gradient(90deg, #6366f1, #a5b4fc));
  border-radius: 4px;
  animation: vis2-bar-load 1.2s ease-out forwards;
  transform-origin: left;
}
@keyframes vis2-bar-load {
  from {
    width: 0;
  }
  to {
    width: var(--pw, 60%);
  }
}

/* Right panel: AI icon + button */
.vis2-panel-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}
.vis2-ai-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis2-ai-circuit-ring {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed, #9333ea);
  box-shadow:
    0 0 20px rgba(124, 58, 237, 0.6),
    inset 0 0 10px rgba(139, 92, 246, 0.3);
}
.vis2-ai-circuit-ring::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3730a3, #6d28d9);
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size:
    8px 8px,
    12px 12px,
    6px 6px;
}
.vis2-ai-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vis2-ai-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.vis2-activate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.vis2-activate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.55);
}
.vis2-act-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: contact-pulse 2s infinite;
  flex-shrink: 0;
}

/* ── ANALYTICS CARD ── */
.vis2-analytics-card {
  position: absolute;
      right: -21px;
    /* bottom: 55px; */
    top: 246px;
  width: 190px;
  background: rgba(248, 248, 255, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 35px rgba(79, 70, 229, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 12px 14px;
  z-index: 5;
  animation: vis-graph-float 7s ease-in-out infinite 1.5s;
}
.vis2-analytics-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e1b4b;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 4px;
}
.vis2-analytics-legend {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.vis2-leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: #64748b;
  font-weight: 500;
}
.vis2-leg-line {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0;
}
.vis2-chart-svg {
  width: 100%;
  height: 70px;
  display: block;
}
.vis2-chart-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: rgba(100, 116, 139, 0.7);
  margin-top: 2px;
}

/* ── CODE EDITOR CARD ── */
.vis2-code-card {
  position: absolute;
top: 26px;
    left: 24px;
  /* bottom: 70px; */
  width: 165px;
  background: rgba(15, 12, 41, 0.88);
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow:
    0 16px 40px rgba(9, 9, 11, 0.25),
    inset 0 1px 0 rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  overflow: hidden;
  z-index: 5;
  animation: vis-code-float 5.5s ease-in-out infinite;
}
.vis2-code-chrome {
  background: rgba(99, 102, 241, 0.12);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vis2-code-title {
  font-size: 0.58rem;
  color: rgba(165, 180, 252, 0.7);
  font-family: "Plus Jakarta Sans", monospace;
  font-weight: 500;
  margin-left: 2px;
}
.vis2-code-lines {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vis2-code-line {
  font-size: 0.58rem;
  font-family: "Courier New", monospace;
  color: rgba(165, 180, 252, 0.6);
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}
.cln {
  color: rgba(99, 102, 241, 0.4);
  font-size: 0.55rem;
  min-width: 8px;
}
.ckw {
  color: #818cf8;
}
.ccl {
  color: #a5b4fc;
}
.cstr {
  color: #86efac;
}

/* ── ICON CARDS ── */
.vis2-icon-card {
  position: absolute;
  background: rgba(248, 248, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 8px 24px rgba(79, 70, 229, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.vis2-git-card {
  width: 52px;
  height: 52px;
  right: 12px;
  top: 42%;
  animation: vis-code-float 6s ease-in-out infinite 0.5s;
}
.vis2-code-icon-card {
  width: 48px;
  height: 48px;
  left: 12px;
  top: 28%;
  animation: vis-particle-float-1 7s ease-in-out infinite 1s;
}
.vis2-layers-card {
  width: 46px;
  height: 46px;
  right: -4px;
  top: 22%;
  animation: vis-graph-float 8s ease-in-out infinite 0.8s;
}

/* ── CIRCUIT CUBE (center bottom) ── */
.vis2-circuit-cube-wrap {
  position: absolute;
    bottom: 151px;
    left: 29%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  perspective: 350px;
  z-index: 6;
}
.vis2-circuit-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.5) 0%,
    transparent 65%
  );
  filter: blur(12px);
  pointer-events: none;
  z-index: -1;
}
.vis2-circuit-cube {
  width: 72px;
  height: 72px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: vis2-circuit-spin 14s linear infinite;
}
@keyframes vis2-circuit-spin {
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
.vis2-cube-face {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(139, 92, 246, 0.6);
  border-radius: 4px;
  background: rgba(79, 46, 153, 0.15);
  backdrop-filter: blur(4px);
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
  background-size: 12px 12px;
  box-shadow: inset 0 0 12px rgba(139, 92, 246, 0.2);
}
.vis2-cf-front {
  transform: rotateY(0deg) translateZ(36px);
  background-color: rgba(99, 102, 241, 0.25);
}
.vis2-cf-back {
  transform: rotateY(180deg) translateZ(36px);
}
.vis2-cf-left {
  transform: rotateY(-90deg) translateZ(36px);
}
.vis2-cf-right {
  transform: rotateY(90deg) translateZ(36px);
}
.vis2-cf-top {
  transform: rotateX(90deg) translateZ(36px);
  background: rgba(168, 85, 247, 0.3);
}
.vis2-cf-bottom {
  transform: rotateX(-90deg) translateZ(36px);
}
/* Circuit glow core */
.vis2-circuit-cube::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.9) 0%,
    rgba(79, 70, 229, 0.6) 60%,
    transparent 100%
  );
  border-radius: 8px;
  filter: blur(6px);
  box-shadow:
    0 0 20px rgba(168, 85, 247, 1),
    0 0 40px rgba(79, 70, 229, 0.6);
  animation: vis-cube-core-pulse 3s ease-in-out infinite alternate;
  z-index: 10;
}

/* ── FLOATING GLASS CUBES ── */
.vis2-glass-cube {
  position: absolute;
  perspective: 200px;
  z-index: 3;
}
.vis2-gc-face {
  position: absolute;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  backdrop-filter: blur(3px);
}

/* Solid purple cube */
.gc-1 {
  top: 8%;
  left: 4%;
  width: 36px;
  height: 36px;
  transform-style: preserve-3d;
  animation: vis2-gc-float-1 8s ease-in-out infinite;
}
.gc-1 .vis2-gc-face {
  width: 36px;
  height: 36px;
  background: rgba(88, 64, 200, 0.85);
  border-color: rgba(139, 92, 246, 0.6);
}
.gc-1 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(18px) rotateX(-20deg) rotateY(30deg);
}
.gc-1 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(18px) rotateX(-20deg) rotateY(30deg);
  background: rgba(60, 40, 160, 0.8);
}
.gc-1 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(18px) rotateX(-20deg) rotateY(30deg);
  background: rgba(70, 50, 180, 0.7);
}
.gc-1 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(18px) rotateX(-20deg) rotateY(30deg);
  background: rgba(100, 70, 220, 0.7);
}
.gc-1 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(18px) rotateX(-20deg) rotateY(30deg);
  background: rgba(120, 90, 240, 0.8);
}

/* Glass cube */
.gc-2 {
  top: 5%;
  right: 8%;
  width: 28px;
  height: 28px;
  transform-style: preserve-3d;
  animation: vis2-gc-float-2 10s ease-in-out infinite 1s;
}
.gc-2 .vis2-gc-face {
  width: 28px;
  height: 28px;
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(165, 180, 252, 0.6);
}
.gc-2 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(14px) rotateX(-25deg) rotateY(40deg);
}
.gc-2 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(14px) rotateX(-25deg) rotateY(40deg);
}
.gc-2 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(14px) rotateX(-25deg) rotateY(40deg);
}
.gc-2 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(14px) rotateX(-25deg) rotateY(40deg);
}
.gc-2 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(14px) rotateX(-25deg) rotateY(40deg);
  background: rgba(139, 92, 246, 0.25);
}

/* Mid purple cube */
.gc-3 {
  bottom: 18%;
  left: 6%;
  width: 32px;
  height: 32px;
  transform-style: preserve-3d;
  animation: vis2-gc-float-3 9s ease-in-out infinite 2s;
}
.gc-3 .vis2-gc-face {
  width: 32px;
  height: 32px;
  background: rgba(88, 64, 200, 0.7);
  border-color: rgba(139, 92, 246, 0.5);
}
.gc-3 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(16px) rotateX(-15deg) rotateY(25deg);
  background: rgba(100, 75, 220, 0.75);
}
.gc-3 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(16px) rotateX(-15deg) rotateY(25deg);
  background: rgba(70, 50, 180, 0.6);
}
.gc-3 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(16px) rotateX(-15deg) rotateY(25deg);
  background: rgba(60, 40, 160, 0.65);
}
.gc-3 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(16px) rotateX(-15deg) rotateY(25deg);
  background: rgba(110, 80, 230, 0.7);
}
.gc-3 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(16px) rotateX(-15deg) rotateY(25deg);
  background: rgba(130, 100, 250, 0.8);
}

/* Small glass cube top-right area */
.gc-4 {
  top: 22%;
  right: 5%;
  width: 22px;
  height: 22px;
  transform-style: preserve-3d;
  animation: vis2-gc-float-1 7s ease-in-out infinite 3s;
}
.gc-4 .vis2-gc-face {
  width: 22px;
  height: 22px;
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(196, 181, 253, 0.5);
}
.gc-4 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(11px) rotateX(-22deg) rotateY(35deg);
}
.gc-4 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(11px) rotateX(-22deg) rotateY(35deg);
}
.gc-4 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(11px) rotateX(-22deg) rotateY(35deg);
}
.gc-4 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(11px) rotateX(-22deg) rotateY(35deg);
}
.gc-4 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(11px) rotateX(-22deg) rotateY(35deg);
  background: rgba(168, 85, 247, 0.3);
}

/* Bottom-right big solid cube */
.gc-5 {
  bottom: 22%;
  right: 4%;
  width: 34px;
  height: 34px;
  transform-style: preserve-3d;
  animation: vis2-gc-float-2 11s ease-in-out infinite 0.5s;
}
.gc-5 .vis2-gc-face {
  width: 34px;
  height: 34px;
  background: rgba(88, 64, 200, 0.8);
  border-color: rgba(139, 92, 246, 0.6);
}
.gc-5 .vis2-gc-front {
  transform: rotateY(0deg) translateZ(17px) rotateX(-18deg) rotateY(28deg);
  background: rgba(105, 78, 225, 0.82);
}
.gc-5 .vis2-gc-back {
  transform: rotateY(180deg) translateZ(17px) rotateX(-18deg) rotateY(28deg);
  background: rgba(65, 45, 175, 0.72);
}
.gc-5 .vis2-gc-left {
  transform: rotateY(-90deg) translateZ(17px) rotateX(-18deg) rotateY(28deg);
  background: rgba(75, 52, 190, 0.68);
}
.gc-5 .vis2-gc-right {
  transform: rotateY(90deg) translateZ(17px) rotateX(-18deg) rotateY(28deg);
  background: rgba(115, 85, 235, 0.75);
}
.gc-5 .vis2-gc-top {
  transform: rotateX(90deg) translateZ(17px) rotateX(-18deg) rotateY(28deg);
  background: rgba(135, 105, 250, 0.85);
}

/* Glass cube float animations */
@keyframes vis2-gc-float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(5deg);
  }
  66% {
    transform: translateY(-6px) rotate(-3deg);
  }
}
@keyframes vis2-gc-float-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(-6deg);
  }
}
@keyframes vis2-gc-float-3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-10px) rotate(4deg);
  }
  80% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

/* ── Dark mode overrides for new scene ── */
body.dark-mode .vis2-browser-card,
body.dark-mode .vis2-analytics-card {
  background: rgba(20, 18, 50, 0.7);
  border-color: rgba(139, 92, 246, 0.3);
}
body.dark-mode .vis2-browser-chrome {
  background: rgba(30, 27, 75, 0.8);
}
body.dark-mode .vis2-section-label {
  color: #c4b5fd;
}
body.dark-mode .vis2-analytics-title {
  color: #c4b5fd;
}
body.dark-mode .vis2-code-card {
  background: rgba(8, 6, 28, 0.95);
}
body.dark-mode .vis2-icon-card {
  background: rgba(25, 20, 60, 0.65);
  border-color: rgba(139, 92, 246, 0.3);
}

/* ── Responsive: center everything below 1200px ── */
@media (max-width: 1200px) {
  .intro-container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 3rem;
  }

  .intro-text-col {
    align-items: center;
  }

  .intro-badge {
    margin: 0 auto;
  }

  .intro-desc {
    max-width: 600px;
    margin: 0 auto;
  }

  .intro-btns {
    justify-content: center;
  }

  .intro-stats {
    justify-content: center;
  }

  .intro-visual-col {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ── Responsive: collapse scene on mobile ── */
@media (max-width: 640px) {
  .intro-visual-wrap {
    height: 400px !important;
  }
  .vis2-browser-card {
    width: min(300px, 92%);
    transform: translate(-46%, -52%);
  }
  .vis2-analytics-card {
    width: 160px;
    right: 0;
    bottom: 40px;
  }
  .vis2-code-card {
    display: none;
  }
  .gc-1,
  .gc-3 {
    display: none;
  }
}
