@import url(enquery-form/style.css);

:root {
  --bg: #fff;
  --surface: #fff;
  --surface-soft: #f8fbff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --accent: #325ff4;
  --accent-rgb: 50, 95, 244;
  --accent-strong: #243bb5;
  --accent-strong-rgb: 36, 59, 181;
  --accent-start: #2f55d4;
  --accent-mid: #4282b0;
  --accent-end: #60c578;
  --highlight: #ffffff;
  --border: rgba(50, 95, 244, 0.14);
  --shadow: 0 24px 80px rgba(25, 49, 104, 0.08)
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%
}

body {
  margin: 0;
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.ai-loading {
  overflow: hidden
}

.ai-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2fb;
  color: #f8fbff;
  overflow: hidden
}

.ai-loader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 20% 20%, rgba(var(--accent-rgb), 0.18), transparent 18%), radial-gradient(circle at 80% 18%, rgba(var(--accent-rgb), 0.14), transparent 14%), radial-gradient(circle at 50% 70%, rgba(115, 165, 255, 0.14), transparent 18%), radial-gradient(circle at 30% 85%, rgba(var(--accent-rgb), 0.10), transparent 12%), linear-gradient(135deg, rgba(var(--accent-rgb), 0.10), transparent 40%, rgba(14, 34, 65, 0.22));
  background-blend-mode: screen, screen, screen, screen, normal;
  filter: blur(20px);
  animation: aiBgFloat 10s ease-in-out infinite, aiBgPulse 5s ease-in-out infinite;
  opacity: .95;
  pointer-events: none;
  transform-origin: center
}

.ai-loader-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 40%, rgba(115, 170, 255, 0.16), transparent 18%), radial-gradient(circle at 75% 30%, rgba(120, 185, 255, 0.12), transparent 16%);
  filter: blur(14px);
  opacity: .75;
  animation: aiGlowMove 12s ease-in-out infinite
}

.ai-loader-bg::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  top: 20%;
  right: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.26), transparent 58%);
  filter: blur(18px);
  opacity: .7;
  animation: aiGlowPulse 8s ease-in-out infinite
}

.ai-loader canvas {
  position: absolute;
  inset: 0;
  z-index: 0
}

.ai-loader-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center
}

.ai-loader-terminal {
  margin: 1.5rem 0;
  padding: 16px;
  min-height: 120px;
  border-radius: 12px;

  background: rgb(224 224 224 / 58%);
  border: 1px solid rgba(255, 255, 255, .08);

  text-align: left;
  overflow: hidden;

  font-family: "JetBrains Mono", monospace;
}

.terminal-line {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: #333333;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);

  animation: terminalReveal .4s ease forwards;
}

.prompt {
  color: #60c578;
  flex-shrink: 0;
  background: linear-gradient(135deg, #306BCA 0%, #2F70B9 30%, #2D7C8F 70%, #28a84a 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.message {
  color: #333333;
}

@keyframes terminalReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-loader-title {
  font-size: 1.15rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 14px
}

.ai-loader-text {
  color: #333333;
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 26px
}

.ai-loader-spinner {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px
}

.ai-loader-spinner span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--highlight);
  background: linear-gradient(135deg, #306BCA 0%, #2F70B9 30%, #2D7C8F 70%, #28a84a 90%);
  opacity: .95;
  animation: aiPulse 1s ease-in-out infinite
}

.ai-loader-spinner span:nth-child(2) {
  animation-delay: .15s
}

.ai-loader-spinner span:nth-child(3) {
  animation-delay: .3s
}

.ai-loader-bar {
  width: 100%;
  height: 8px;
  background: rgb(81 81 81 / 12%);
  border-radius: 999px;
  overflow: hidden;
  margin: 18px auto 12px
}

.ai-loader-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  transition: width 180ms ease
}

.ai-loader-percent {
  font-size: .95rem;
  color: #333333;
  text-align: right;
  margin-bottom: 10px
}

.ai-loader-time,
.ai-loader-progress {
  color: #333333;
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 10px
}

.ai-loader-subtext {
  color: #333333;
}

.ai-loader-title {
  font-size: 1.15rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.6
}

@keyframes aiPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.55);
    opacity: 1
  }
}

@keyframes aiBgFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-16px, 14px) scale(1.04)
  }
}

@keyframes aiBgPulse {

  0%,
  100% {
    opacity: .88;
    transform: scale(1)
  }

  50% {
    opacity: .98;
    transform: scale(1.06)
  }
}

@keyframes aiGlowMove {
  0% {
    transform: translate(0, 0);
    opacity: .8
  }

  50% {
    transform: translate(-10px, 12px);
    opacity: .95
  }

  100% {
    transform: translate(0, 0);
    opacity: .8
  }
}

@keyframes aiGlowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.16);
    opacity: .9
  }
}

.ai-loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary)
}

button,
input,
textarea,
select {
  font: inherit
}

@media(max-width:992px) {
  ::-webkit-scrollbar {
    display: none
  }

  * {
    -ms-overflow-style: none;
    scrollbar-width: none
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 65px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -1px 10px rgba(15, 23, 42, 0.08)
}

.navbar-brand {
  margin-left: 2rem;
  height: 6rem;
  width: 7rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 80px
}

.navbar-brand img {
  height: 42px;
  width: auto
}

.inline-favicon {
  width: 20px;
  height: auto;
  display: block
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  margin-right: 19px;
  padding: 0
}

.navbar-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  transition: color .2s ease
}

.navbar-links a:hover {
  color: var(--accent)
}

.navbar-cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  transition: background .2s ease, transform .15s ease;
  white-space: nowrap;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%)
}

.navbar-cta:hover {
  background: var(--accent-strong);
  color: #fff;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  transform: translateY(-1px)
}

.nav-right {
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 4px;
  margin-right: 1rem;
  border-radius: 8px;
  transition: background .2s;
  z-index: 1100
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.06)
}

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center
}

.hamburger.is-open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.is-open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.is-open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 20px 28px 28px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .3s ease
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mobile-nav-link {
  display: block;
  padding: 12px 8px;
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background .2s, color .2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06)
}

.mobile-nav-link:hover {
  background: rgba(50, 95, 244, 0.06);
  color: #3f63f4
}

.mobile-cta {
  margin-top: 16px;
  width: fit-content;
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  padding: 12px 20px
}

@media(max-width:768px) {
  .nav-right {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  #bridge-gallery-section .type-bar {
    max-width: 75vw !important;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 65px;
  z-index: 10
}

.hero-bg {
  position: absolute;
  top: -33px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .1s ease-out
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  height: calc(100vh - 30px)
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 810px;
  padding: 0 24px
}

.hero-badge {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  letter-spacing: 2.5px;
  padding: 6px 18px;
  border-radius: 20px
}

.hero-heading {
  margin: 0;
  font-size: clamp(42px, 6vw, 65px);
  font-weight: 800;
  color: #000;
  line-height: 1.1
}

.hero-heading-cyan {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  font-weight: 400
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 8px
}

.hero-btn-primary {
  background: #3f63f4;
  color: #fff;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .2s, transform .15s
}

.hero-btn-primary:hover {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  color: #fff;
  transform: translateY(-2px)
}

.icon-space {
  margin-bottom: 0
}

.hero-btn-secondary {
  background: #fff;
  color: #3f63f4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  border-radius: 8px;
  transition: background .2s, transform .15s
}

.hero-btn-secondary span {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-btn-secondary:hover {
  background: #e8edff;
  color: #3454d1;
  transform: translateY(-2px)
}

.node-scene {
  position: relative;
  background-size: cover;
  z-index: 10;
  background-position: center;
  padding: 0px 24px;
}

#node-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: visible
}

.node-thread {
  animation: flowDash 1.4s linear infinite
}

@keyframes flowDash {
  from {
    stroke-dashoffset: 0
  }

  to {
    stroke-dashoffset: -18
  }
}

.bridge-services {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
  position: relative;
  z-index: 10;
  max-width: 1120px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12)
}

.video-section {
  margin: 0;
  position: relative;
  z-index: 20;
  padding: 0px 24px 60px;
  width: 100%;
}

.video-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.workflow-header-services {
  margin-bottom: 24px
}

.workflow-header-services .workflow-intro {
  margin-top: 0px;
  font-size: 1rem;
  color: #4a5568;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75
}

.card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  color: #111;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform .3s ease
}

.card:hover {
  transform: translateY(-5px)
}

.card.small {
  width: 140px;
  height: 160px;
  margin-left: .5rem;
  flex-shrink: 0
}

.card.large {
  width: 220px;
  height: 280px;
  flex-shrink: 0
}

.card.text {
  width: 160px;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 550
}

.card span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #555
}

.card p {
  margin-top: 10px;
  color: #444;
  line-height: 1.4
}

.middle {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: 20px
}

.left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.mid-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-left: 0
}

.image-2 {
  background-image: url("assets/WhatsApp Image 2026-04-16 at 5.52.50 PM.jpeg");
  background-size: cover;
  background-position: center
}

.image-3 {
  background-image: url("assets/work-flow/survey_data_image_2.png");
  background-size: cover;
  background-position: center
}

#card-rodin {
  width: 180px
}

.generation-3d-wrapper {
  margin-left: -32px
}

.image-4 {
  background-image: url("assets/Whisk_e96ef4a6aa10f8a90904ff229e3d8410dr (3).png");
  background-size: cover;
  background-position: center
}

.image-5 {
  position: relative;
  overflow: hidden
}

.card-image-main {
  position: relative;
  overflow: hidden
}

.card-image-main video,
.image-5 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 20px
}

#card-video {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  padding: 10px 20px !important
}

.export-icons-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 28px
}

.export-icon-box {
  width: 110px;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(0);
  -webkit-transform: translateZ(0)
}

.export-icon-box.dxf {
  background-image: url("assets/dxf-image.png")
}

.export-icon-box.ifc {
  background-image: url("assets/ifc-image.png")
}

.export-icon-box.pdf {
  background-image: url("assets/pdf-image.png")
}

.card-content {
  position: relative;
  z-index: 2
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prompt video {
  object-fit: fill !important;
  background-color: #000
}

.card-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #222;
  text-transform: uppercase;
  margin-left: 0;
  min-height: 38px;
  display: flex;
  align-items: flex-end
}

.card-label span {
  margin-left: 10px;
  color: #777;
  font-size: 11px
}

.scroll-container {
  height: 500vh;
  width: 100%;
  background-color: #000;
  color: white
}

.scroll-section {
  height: 500vh;
  position: relative
}

.canvas-sticky {
  position: sticky;
  top: 0;
  height: 100vh
}

#canvas {
  width: 100%;
  height: 100%;
  display: block
}

.bridge-components {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 10;
  padding: 0 24px;
  padding-top: 60px
}

.bridge-overlay {
  display: contents
}

.bridge-header1 {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12)
}

.viewer {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center
}

.why-aagento {
  background: #fff;
  color: #000;
  width: 100%;
  min-height: auto;
  overflow-x: hidden
}

.why-aagento-header {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center
}

.why-aagento-header .eyebrow {
  margin-bottom: 16px
}

.why-aagento-grid {
  max-width: 1400px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  justify-content: center;
  margin-inline: 100px
}

.why-aagento-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  justify-content: center;
  min-height: 360px;
  max-width: 560px
}

.why-aagento-middle-column {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.eyebrow {
  color: #325ff4;
  font-size: 12px;
  margin-bottom: 1px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0;
  font-weight: 700;
  text-transform: uppercase
}

.why-aagento h2 {
  margin-bottom: 6px;
  margin-top: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0
}

.why-aagento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px
}

.why-aagento-list li {
  position: relative;
  padding-left: 32px;
  color: #000;
  font-size: 16px;
  line-height: 1.55;
  transition: transform .3s ease
}

.why-aagento-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
  transition: transform .3s ease, box-shadow .3s ease
}

.why-aagento-list li:hover {
  transform: scale(1.02)
}

.why-aagento-list li:hover::before {
  transform: rotate(225deg) scale(1.2);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.6)
}

.why-aagento-visual {
  display: flex;
  justify-content: center;
  min-height: 360px;
  min-width: 0;
  max-width: 100%
}

.why-aagento-cards {
  max-width: 100%;
  min-width: 0;
  justify-content: center !important
}

.why-stable-wrapper {
  flex: 0 0 auto
}

#why-card-stable {
  margin-right: 0 !important
}

.why-aagento-middle-column {
  min-width: 0
}

.why-text-wrapper,
.why-flux-wrapper {
  margin-left: 0 !important
}

#why-card-text {
  width: clamp(270px, 20vw, 330px) !important;
  max-width: 100% !important
}

#why-card-flux {
  width: clamp(310px, 25vw, 400px) !important;
  max-width: 100% !important
}

@media(max-width:980px) {
  .why-aagento-grid {
    grid-template-columns: 1fr
  }

  .why-aagento-visual {
    justify-content: center
  }

  #why-card-stable {
    width: clamp(140px, 50vw, 200px) !important;
    height: clamp(180px, 60vw, 250px) !important;
    max-width: calc(100vw - 100px) !important
  }

  #why-card-text {
    width: clamp(200px, 60vw, 300px) !important;
    height: clamp(110px, 35vw, 160px) !important;
    max-width: calc(100vw - 100px) !important
  }

  #why-card-flux {
    width: clamp(200px, 60vw, 300px) !important;
    height: clamp(110px, 35vw, 160px) !important;
    max-width: calc(100vw - 100px) !important
  }

  div#wta-sticky {
    min-height: auto
  }
}

@media(max-width:768px) {
  .why-aagento-cards {
    flex-direction: column !important;
    gap: 30px !important
  }

  .why-aagento-middle-column {
    flex-direction: column !important;
    gap: 30px !important
  }

  .why-stable-wrapper {
    margin-right: 0 !important
  }

  .why-text-wrapper {
    margin-left: 0 !important
  }

  .why-flux-wrapper {
    margin-left: 0 !important
  }

  #why-card-stable {
    width: clamp(140px, 50vw, 200px) !important;
    height: clamp(180px, 60vw, 250px) !important;
    max-width: calc(100vw - 100px) !important
  }

  #why-card-text {
    width: clamp(200px, 60vw, 300px) !important;
    height: clamp(110px, 35vw, 160px) !important;
    max-width: calc(100vw - 100px) !important
  }

  #why-card-flux {
    width: clamp(200px, 60vw, 300px) !important;
    height: clamp(110px, 35vw, 160px) !important;
    max-width: calc(100vw - 100px) !important
  }
}

#mainImage {
  width: 40%;
  height: 70%
}

.viewer img {
  width: 100%;
  border-radius: 20px;
  transition: all .4s ease
}

.tool {
  position: absolute;
  padding: 8px 14px;
  height: 20px;
  width: fit-content;
  background: black;
  color: white;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .3s ease
}

.tool:hover {
  background: #48f871;
  color: #000;
  transform: scale(1.1)
}

.tool.active,
.mobile-tool-pill.active {
  background: #325ff4 !important;
  color: #fff !important;
  border-color: #325ff4 !important;
  transform: scale(1.1)
}

.invert {
  filter: invert(1)
}

.grayscale {
  filter: grayscale(1)
}

.bright {
  filter: brightness(1.4)
}

.contrast {
  filter: contrast(1.8)
}

.blur {
  filter: blur(3px)
}

.zoom {
  transform: scale(5)
}

.pre-footer-cta {
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 24px;
}

.cta-container {
  max-width: 1120px;
  padding: 50px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  margin: 0 auto
}

.cta-container h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -.5px
}

.cta-container p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 -4px 0
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 60px 24px 60px;
  color: var(--text-primary);
  background-size: 220% 220%
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  animation: contact-entrance .9s ease forwards
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 24px;
  z-index: 1
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  font-weight: 700;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .16em;
  text-transform: uppercase
}

.contact-copy h2 {
  font-size: 36px;
  line-height: 1.08;
  margin: 0;
  max-width: 100%;
  color: var(--text-primary)
}

.contact-copy p {
  margin: 0;
  max-width: 100%;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9
}

.contact-copy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 10px
}

.contact-copy-list span {
  color: var(--text-secondary);
  font-size: .96rem;
  line-height: 1.7
}

.contact-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px
}

.contact-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 79, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px)
}

.pill-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(50, 95, 244, 0.12);
  color: var(--accent);
  border-radius: 14px;
  font-size: 1.2rem
}

.contact-pill p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-primary);
  text-align: center
}

.contact-note-icon {
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 1.15rem
}

.contact-note strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px
}

.contact-note p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65
}

.contact-panel {
  display: flex;
  justify-content: center;
  align-items: stretch;
  z-index: 1
}

.contact-form-card {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%
}

.contact-form-card-header {
  padding: 28px 28px 8px
}

.contact-card-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary)
}

.contact-form-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(50, 95, 244, 0.14), rgba(255, 255, 255, 0.12))
}

.contact-form-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: float-gif 8s ease-in-out infinite
}

@keyframes float-gif {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-10px) scale(1.02)
  }
}

.contact-form-body {
  padding: 28px 28px 24px
}

.contact-form-body h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  line-height: 1.08;
  color: var(--text-primary)
}

.contact-form-body p {
  margin: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: .98rem
}

.contact-form {
  display: grid;
  gap: 16px
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-field-full {
  grid-column: 1 / -1
}

.contact-field label {
  color: var(--text-secondary);
  font-size: .92rem;
  font-weight: 600
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 79, 0.12);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--text-primary);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(50, 95, 244, 0.14);
  transform: translateY(-1px)
}

.contact-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 60px 24px 60px;
  color: var(--text-primary);
  background-size: cover;
  z-index: 10;
  background-position: center
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12);
  background-position: center
}

.contact-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  z-index: 1
}

.contact-eyebrow {
  opacity: 0;
  animation: slideUp .8s ease forwards
}

.contact-copy h2 {
  opacity: 0;
  animation: slideUp .9s ease forwards
}

.contact-copy p {
  opacity: 0;
  animation: slideUp 1.1s ease forwards
}

.contact-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 96, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 79, 0.05);
  opacity: 0;
  animation: fadeUp .8s ease forwards;
  transition: all .35s ease
}

.contact-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08)
}

.pill-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: rgba(50, 95, 244, 0.12);
  color: var(--accent);
  border-radius: 14px;
  font-size: 1.2rem;
  animation: iconFloat 3s ease-in-out infinite
}

.contact-pill p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-primary);
  text-align: center
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

#bg-canvas1 {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.contact-note {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px
}

.contact-note img {
  width: 100%;
  margin: 0 auto;
  max-width: 300px
}

.contact-note-icon {
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 1.15rem
}

.contact-form-card>* {
  position: relative;
  z-index: 1
}

.contact-field input,
.contact-field textarea {
  transition: all .3s ease
}

.contact-field input:focus,
.contact-field textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(31, 96, 255, .12)
}

.contact-submit {
  position: relative;
  overflow: hidden
}

.contact-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
  animation: buttonShine 3s infinite;
  pointer-events: none;
  z-index: 0
}

.contact-submit span {
  position: relative;
  z-index: 1
}

@keyframes gridMove {
  from {
    transform: translateY(0)
  }

  to {
    transform: translateY(60px)
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-40px)
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes shine {
  100% {
    left: 180%
  }
}

@keyframes buttonShine {
  100% {
    left: 180%
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(25px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float-gif {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-10px) scale(1.02)
  }
}

@media(max-width:992px) {

  .contact-inner {
    grid-template-columns: 1fr
  }

  .contact-form-card {
    max-width: 100%
  }

  .contact-row {
    grid-template-columns: 1fr
  }

  .contact-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .contact-note {
    flex-direction: column;
    align-items: stretch
  }

  .contact-note-icon {
    min-width: auto;
    margin-bottom: 12px;
    margin-right: 0
  }

  .contact-bg-shapes {
    opacity: .2
  }
}

@media(max-width:768px) {

  .contact-copy h2 {
    font-size: 2.2rem
  }

  .contact-copy p {
    font-size: 1rem
  }

  .contact-form-body {
    padding: 24px 18px 22px
  }

  .contact-pill-row {
    grid-template-columns: 1fr
  }

  .contact-pill {
    padding: 16px 14px
  }

  .contact-card-title {
    font-size: 1.75rem
  }

  .contact-bg-shapes {
    opacity: .16
  }

  .shape-circle {
    width: 90px;
    height: 90px
  }

  .shape-square {
    width: 95px;
    height: 95px
  }

  .shape-diamond {
    width: 75px;
    height: 75px
  }

  .shape-hex {
    width: 95px;
    height: 88px
  }

  .shape-ring {
    width: 110px;
    height: 110px
  }
}

@media(max-width:640px) {
  .contact-section {
    padding: 36px 24px 36px
  }

  .contact-inner {
    gap: 24px
  }

  .contact-copy h2 {
    font-size: 1.9rem
  }

  .contact-form-body {
    padding: 22px 16px 18px
  }

  .contact-row {
    grid-template-columns: 1fr
  }

  .contact-pill-row {
    grid-template-columns: 1fr
  }

  .contact-pill {
    padding: 14px 12px
  }

  .contact-note {
    flex-direction: column;
    align-items: stretch
  }

  .contact-note-icon {
    min-width: auto;
    margin-bottom: 12px;
    margin-right: 0
  }

  .contact-form-card {
    margin: 0 auto;
    border-radius: 20px
  }

  .contact-bg-shapes {
    opacity: .08
  }

  .shape-circle {
    width: 80px;
    height: 80px
  }

  .shape-square {
    width: 90px;
    height: 90px
  }

  .shape-diamond {
    width: 70px;
    height: 70px
  }

  .shape-hex {
    width: 82px;
    height: 76px
  }

  .shape-ring {
    width: 100px;
    height: 100px
  }

  .contact-copy p {
    font-size: .98rem
  }

  .contact-card-title {
    font-size: 1.6rem
  }

  .contact-field input,
  .contact-field textarea {
    padding: 12px 14px
  }

  .contact-submit {
    padding: 14px 16px
  }
}

.about-us-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 60px 24px;
  overflow: hidden;
  z-index: 10
}

.about-us-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12)
}

.about-us-header {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center
}

.about-us-header .eyebrow {
  margin-bottom: 16px
}

.about-us-header h2 {
  margin-bottom: 6px;
  margin-top: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  color: #000
}

.about-us-title-accent {
  color: black
}

.about-us-subtitle {
  color: #5a6480;
  font-size: 15px;
  line-height: 1.6;
  margin: 10px auto 0;
  max-width: 450px
}

.about-us-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto
}

.about-us-cards-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-cards-left .about-us-feature,
.about-us-cards-right .about-us-feature {
  text-align: center
}

.about-us-cards-left .about-us-feature-icon,
.about-us-cards-right .about-us-feature-icon {
  margin: 0 auto 10px
}

.about-us-video-wrap {
  position: relative;
  width: 380px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 16px 40px rgba(13, 21, 38, 0.13), 0 3px 12px rgba(50, 95, 244, 0.07)
}

.about-us-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px
}

.about-us-feature {
  position: relative;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(13, 21, 38, 0.07), 0 1px 4px rgba(50, 95, 244, 0.06);
  transition: box-shadow .25s ease, transform .25s ease
}

.about-us-feature:nth-child(1) {
  animation-delay: .1s, 0.55s
}

.about-us-feature:nth-child(2) {
  animation-delay: .26s, 2.3s
}

.about-us-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(50, 95, 244, 0.07);
  border: 1px solid rgba(50, 95, 244, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #325ff4;
  transition: background .22s, box-shadow .22s, transform .22s
}

.about-us-feature:hover .about-us-feature-icon {
  background: rgba(50, 95, 244, 0.13);
  box-shadow: 0 4px 14px rgba(50, 95, 244, 0.15);
  transform: translateY(-2px)
}

.about-us-feature-number {
  display: block;
  color: #325ff4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 6px
}

.about-us-feature-title {
  margin: 0 0 7px;
  color: #0d1526;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25
}

.about-us-feature-desc {
  margin: 0;
  color: #5a6480;
  font-size: 12.5px;
  line-height: 1.5
}

@keyframes aboutFeatureIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes cardFloat {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }
}

@media(max-width:960px) {
  .about-us-body {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .about-us-video-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto
  }

  .about-us-cards-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
  }

  .about-us-cards-left .about-us-feature,
  .about-us-cards-right .about-us-feature {
    text-align: center;
    flex: 1 1 220px;
    max-width: 260px
  }

  .about-us-cards-left .about-us-feature-icon,
  .about-us-cards-right .about-us-feature-icon {
    margin: 0 auto 10px
  }
}

@media(max-width:720px) {
  .about-us-section {
    padding: 52px 18px 60px
  }

  .about-us-header h2 {
    font-size: 32px
  }

  .about-us-cards-col {
    flex-direction: column;
    align-items: center
  }

  .about-us-cards-left .about-us-feature,
  .about-us-cards-right .about-us-feature {
    max-width: 100%;
    width: 100%
  }
}

.btn-early-access {
  background: #fff;
  color: #3f63f4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-top: 26px;
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform .2s ease, background .2s ease
}

.btn-early-access span {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.btn-early-access:hover {
  background: #e8edff;
  color: #3454d1;
  transform: translateY(-2px)
}

.site-footer {
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  padding: 0 24px 30px;
  flex-direction: column;
  justify-content: space-between
}

.footer-top {
  display: flex;
  margin-bottom: 2vh
}

.footer-brand {
  display: flex;
  flex-direction: column;
  width: 40%
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  object-position: left
}

.footer-subtext {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding-left: 2px
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1vh;
  margin-left: 7%
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s
}

.footer-links a:hover {
  opacity: .7
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
  justify-content: flex-end;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12);
  background-color: #fff;
  z-index: 10
}

.footer-giant-text {
  width: 50%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  flex-grow: 1;
  min-height: 0
}

.footer-giant-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-policy-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-policy-link:hover {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 1px solid rgba(15, 23, 79, 0.08);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  border-color: transparent;
  color: #fff;
  border: 0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50, 95, 244, 0.2);
}

/* Social links tooltips */
.footer-social-link::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.footer-social-link::after {
  content: '';
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(15, 23, 42, 0.95) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.footer-social-link:hover::before,
.footer-social-link:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media(max-width:768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-giant-text {
    justify-content: center
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    width: 100%;
  }

  .footer-policies {
    justify-content: center;
    order: 1;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-socials {
    justify-content: center;
    order: 2;
    width: 100%;
    flex-wrap: wrap;
  }

  .footer-copyright {
    text-align: center;
    white-space: normal;
    order: 3;
  }
}

.capabilities-section {
  background: white;
  padding: 60px 0 0 0;
  text-align: center;
  margin-top: 0;
  overflow: hidden
}

.deck-counter {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 32px
}

.deck-counter span {
  color: #325ff4
}

.deck-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 300px;
  margin: 0 auto 0
}

.cap-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 160px;
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 30px 32px;
  text-align: left;
  box-shadow: 0 12px 48px rgba(50, 95, 244, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(50, 95, 244, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  will-change: transform, opacity;
  transform: translate(calc(-50% - 120vw), -50%) scale(0.78);
  opacity: 0;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease, box-shadow .35s ease
}

.cap-card.pos-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 30;
  position: absolute;
  top: 43%;
  left: 50%;
  pointer-events: all;
  box-shadow: 0 20px 60px rgba(50, 95, 244, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08)
}

.cap-card.pos-left {
  transform: translate(calc(-50% - 270px), -50%) scale(0.70);
  opacity: .72;
  z-index: 8;
  pointer-events: all;
  font-size: 14px
}

.cap-card.pos-right {
  transform: translate(calc(-50% + 270px), -50%) scale(0.70);
  opacity: .72;
  z-index: 8;
  pointer-events: all
}

.cap-card.pos-far-left {
  transform: translate(calc(-50% - 700px), -50%) scale(0.65);
  opacity: 0;
  z-index: 5;
  pointer-events: none
}

.cap-card.pos-far-right {
  transform: translate(calc(-50% + 700px), -50%) scale(0.65);
  opacity: 0;
  z-index: 5;
  pointer-events: none
}

.cap-card.pos-left:hover,
.cap-card.pos-right:hover {
  opacity: .88;
  box-shadow: 0 16px 48px rgba(50, 95, 244, 0.14)
}

.cap-card-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(50, 95, 244, 0.15);
  padding: 12px;
  flex-shrink: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center
}

.cap-card.pos-center .cap-card-icon {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.cap-card-icon img,
.cap-card-icon svg {
  max-width: 80%;
  max-height: 80%;
  display: block;
  filter: brightness(0) invert(1)
}

.cap-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
  transition: color .25s ease;
  padding-right: 60px
}

.cap-card.pos-center:hover .card-title {
  color: #325ff4
}

.cap-card .card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: normal;
  margin: 0
}

.cap-card .card-swipe-hint {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: .5px;
  margin-top: auto;
  opacity: 0;
  transition: opacity .3s ease
}

.cap-card.pos-center .card-swipe-hint {
  opacity: 1
}

.deck-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(50, 95, 244, 0.2);
  background: #fff;
  color: #325ff4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(50, 95, 244, 0.12);
  transition: all .25s ease;
  flex-shrink: 0
}

.deck-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.deck-arrow:hover {
  background: #325ff4;
  color: #fff;
  border-color: #325ff4;
  box-shadow: 0 6px 20px rgba(50, 95, 244, 0.35);
  transform: translateY(-50%) scale(1.08)
}

.deck-arrow-prev {
  left: 100px
}

.deck-arrow-next {
  right: 100px
}

.deck-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  padding-bottom: 8px
}

.deck-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d9f0;
  cursor: pointer;
  transition: all .3s ease
}

.deck-dot.active {
  background: #325ff4;
  width: 24px;
  border-radius: 4px
}

.deck-dot:hover {
  background: #325ff4;
  opacity: .6
}

@media(max-width:900px) {
  .deck-stage {
    height: 390px
  }

  .cap-card {
    width: 300px
  }

  .cap-card.pos-left {
    transform: translate(calc(-50% - 270px), -50%) scale(0.80)
  }

  .cap-card.pos-right {
    transform: translate(calc(-50% + 270px), -50%) scale(0.80)
  }
}

@media(max-width:640px) {
  .deck-stage {
    height: 380px
  }

  .cap-card {
    width: 250px;
    max-width: 80vw;
    padding: 24px 20px;
    height: auto;
    min-height: 150px
  }

  .cap-card.pos-left {
    transform: translate(calc(-50% - 130px), -50%) scale(0.85);
    opacity: .4
  }

  .cap-card.pos-right {
    transform: translate(calc(-50% + 130px), -50%) scale(0.85);
    opacity: .4
  }

  .cap-card .card-title {
    font-size: 17px;
    padding-right: 40px
  }

  .cap-card-icon {
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px
  }

  .deck-arrow {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 10px;
    transform: none
  }

  .deck-arrow:hover {
    transform: scale(1.08)
  }

  .deck-arrow svg {
    width: 16px;
    height: 16px
  }

  .deck-arrow-prev {
    left: calc(50% - 45px)
  }

  .deck-arrow-next {
    right: auto;
    left: calc(50% + 9px)
  }
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #3eb7ff;
  text-transform: uppercase;
  margin-bottom: 16px
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  margin-top: 0;
  line-height: 1.2
}

.section-subtitle {
  font-size: 16px;
  color: #2b2c2f;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6
}

.capabilities-section .cards-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.capabilities-section .cards-grid::-webkit-scrollbar {
  display: none
}

.cards-grids {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  justify-content: center;
  margin-top: 56px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto
}

@media(max-width:1120px) {
  .cards-grids {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    padding: 0 20px
  }
}

@media(max-width:860px) {
  .cards-grids {
    grid-template-columns: repeat(2, minmax(200px, 1fr))
  }
}

@media(max-width:560px) {
  .cards-grids {
    grid-template-columns: repeat(1, minmax(200px, 1fr))
  }
}

.capabilities-section .card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  min-height: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
  scroll-snap-align: center;
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.capabilities-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #325ff4, #00d2ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 10;
  pointer-events: none
}

.capabilities-section .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(50, 95, 244, 0.15);
  border-color: transparent
}

.capabilities-section .card:hover::before {
  opacity: 1
}

.capabilities-section .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(50, 95, 244, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: all .4s ease
}

.capabilities-section .card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(50, 95, 244, 0.15)
}

.cad-svg {
  height: 35px !important
}

.validation-svg {
  height: 50px !important;
  width: 50px !important
}

.comming-soon {
  margin-bottom: 60px
}

.comming-soon-cards {
  justify-content: center
}

.capabilities-section .card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #325ff4;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: filter .35s ease
}

.capabilities-section .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: color .25s ease
}

.capabilities-section .card:hover .card-title {
  color: #325ff4
}

.capabilities-section .card-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  transition: color .25s ease
}

.capabilities-section .card:hover .card-desc {
  color: #334155
}

.capabilities-section .slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 56px auto 0;
  padding: 0 40px;
  max-width: 1400px
}

.capabilities-section .cards-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  padding: 40px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.capabilities-section .cards-grid::-webkit-scrollbar {
  display: none
}

.capabilities-section .scroll-btn {
  position: absolute;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #325ff4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
  backdrop-filter: blur(10px)
}

.capabilities-section .scroll-btn.left {
  left: 0
}

.capabilities-section .scroll-btn.right {
  right: 0
}

.capabilities-section .scroll-btn:hover {
  background-color: #325ff4;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(50, 95, 244, 0.3)
}

.capabilities-section .scroll-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media(max-width:1024px) {
  .capabilities-section .slider-wrapper {
    padding: 0 30px
  }

  .capabilities-section .cards-grid {
    gap: 20px
  }

  .capabilities-section .card {
    width: 240px;
    min-width: 240px;
    padding: 24px 20px
  }
}

@media(max-width:768px) {
  .capabilities-section {
    padding: 60px 20px 0 20px
  }

  .capabilities-section .slider-wrapper {
    padding: 0 20px
  }

  .capabilities-section .cards-grid {
    gap: 16px
  }

  .capabilities-section .card {
    width: 220px;
    min-width: 220px;
    padding: 20px 16px;
    min-height: 200px
  }

  .capabilities-section .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px
  }

  .capabilities-section .card-title {
    font-size: 16px;
    margin-bottom: 10px
  }

  .capabilities-section .card-desc {
    font-size: 13px
  }

  .capabilities-section .scroll-btn {
    width: 40px;
    height: 40px
  }

  .capabilities-section .scroll-btn svg {
    width: 20px;
    height: 20px
  }
}

@media(max-width:560px) {
  .capabilities-section {
    padding: 60px 15px 0 15px
  }

  .capabilities-section .slider-wrapper {
    padding: 0
  }

  .section-title,
  .workflow-header-services .workflow-title {
    font-size: 28px
  }

  .capabilities-section .card {
    width: 200px;
    min-width: 200px;
    padding: 16px 14px;
    min-height: 180px
  }

  .capabilities-section .card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px
  }

  .capabilities-section .card-title {
    font-size: 15px;
    margin-bottom: 8px
  }

  .capabilities-section .card-desc {
    font-size: 12px;
    line-height: 1.5
  }

  .capabilities-section .scroll-btn {
    width: 36px;
    height: 36px
  }

  .capabilities-section .scroll-btn svg {
    width: 18px;
    height: 18px
  }

  .info-card {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media(max-width:380px) {
  .capabilities-section .card {
    width: 180px;
    min-width: 180px
  }

  .capabilities-section .scroll-btn {
    width: 32px;
    height: 32px
  }
}

.target-users-section {
  padding: 60px 24px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10
}

.target-users-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12);
  overflow: hidden;
  position: relative
}

.target-users-eyebrow {
  color: #325ff4;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px 0
}

.target-users-heading {
  color: #000;
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px
}

.target-users-orbit {
  min-height: 560px;
  max-width: 940px;
  margin: 24px auto 0;
  position: relative;
  display: grid;
  place-items: center
}

.target-users-orbit::before,
.target-users-orbit::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(50, 95, 244, .22);
  border-radius: 50%;
  pointer-events: none
}

.target-users-orbit::before {
  width: 78%;
  max-width: 720px;
  aspect-ratio: 1 / .62;
  animation: targetOrbitSpin 22s linear infinite
}

.target-users-orbit::after {
  width: 58%;
  max-width: 520px;
  aspect-ratio: 1 / .62;
  animation: targetOrbitSpin 18s linear infinite reverse
}

.target-users-center {
  width: min(330px, 58vw);
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 197, 120, .14) 0, rgba(66, 130, 176, .12) 42%, rgba(47, 85, 212, .08) 70%, rgba(255, 255, 255, 0) 72%)
}

.target-users-center img {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 32px rgba(15, 23, 42, .18));
  max-width: 200px;
}

.target-users-pulse {
  width: 78%;
  height: 78%;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 85, 212, .14), rgba(96, 197, 120, .14));
  animation: targetPulse 2.8s ease-in-out infinite
}

.target-user-point {
  --x: 0px;
  --y: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  width: max-content;
  max-width: 220px;
  padding: 11px 18px 11px 34px;
  border-radius: 8px;
  border: 1px solid rgba(50, 95, 244, .14);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .1);
  background: rgba(255, 255, 255, .96);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  animation: targetFloat 5.5s ease-in-out infinite;
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease
}

.target-user-point::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  box-shadow: 0 0 0 6px rgba(50, 95, 244, .1)
}

.target-user-point:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(50, 95, 244, .22);
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%)
}

.target-user-point:hover::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .22)
}

.point-1 {
  --x: -310px;
  --y: -195px;
  animation-delay: -.2s
}

.point-2 {
  --x: 0px;
  --y: -245px;
  animation-delay: -.9s
}

.point-3 {
  --x: 310px;
  --y: -190px;
  animation-delay: -1.5s
}

.point-4 {
  --x: 385px;
  --y: 0px;
  animation-delay: -2.1s
}

.point-5 {
  --x: 250px;
  --y: 200px;
  animation-delay: -2.7s
}

.point-6 {
  --x: -20px;
  --y: 245px;
  animation-delay: -3.2s
}

.point-7 {
  --x: -290px;
  --y: 190px;
  animation-delay: -3.8s
}

.point-8 {
  --x: -385px;
  --y: 0px;
  animation-delay: -4.4s
}

@keyframes targetFloat {

  0%,
  100% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)))
  }

  50% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 16px))
  }
}

@keyframes targetPulse {

  0%,
  100% {
    opacity: .55;
    transform: scale(.94)
  }

  50% {
    opacity: 1;
    transform: scale(1.06)
  }
}

@keyframes targetOrbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.workflow-header-services {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.workflow-header-services .section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #325ff4;
  margin-bottom: 12px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 12px
}

.workflow-header-services .workflow-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 12px 0;
  line-height: 1.2
}

.workflow-header-services .workflow-subtitle {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6
}

.workflow-grid-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto
}

.workflow-card-services {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid #e0e4f5;
  border-radius: 20px;
  padding: 12px 10px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.workflow-card-services:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95)
}

.workflow-card-services:hover::before {
  opacity: 1
}

.workflow-card-services .card-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
  line-height: 1;
  margin-bottom: 4px;
  transition: opacity .3s ease
}

.workflow-card-services:hover .card-number {
  opacity: 1
}

.workflow-card-services .card-title {
  font-size: .9rem;
  font-weight: 600;
  color: #1a2332;
  margin: 0 0 6px 0;
  line-height: 1.4
}

.workflow-card-services .card-description {
  font-size: .75rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.5
}

.bridge-services-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 40px 0;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden
}

.bridge-services-content>.left,
.bridge-services-content>.middle {
  flex: 1;
  min-width: 260px
}

.export-column {
  align-self: center
}

@media(max-width:1200px) {
  .workflow-grid-services {
    grid-template-columns: repeat(3, minmax(140px, 1fr))
  }

  .bridge-services-content {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 40px
  }

  .generation-3d-wrapper {
    margin-left: 0
  }

  .card.small {
    width: 120px;
    height: 140px
  }

  .card.large {
    width: 200px;
    height: 250px
  }
}

@media(max-width:992px) {
  .bridge-services {
    padding: 60px 20px 0;
    gap: 25px
  }

  .workflow-grid-services {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
    max-width: 600px
  }

  .workflow-card-services {
    padding: 10px 8px;
    min-height: 100px
  }

  .bridge-services-content {
    gap: 15px;
    justify-content: center
  }

  .card.small {
    width: 110px;
    height: 130px
  }

  .card.large {
    width: 180px;
    height: 220px
  }

  .card.text {
    width: 135px
  }

  .mid-left {
    margin-top: 0;
    margin-left: 0;
    align-items: center
  }

  .middle {
    margin-left: 0
  }
}

@media(max-width:768px) {
  .bridge-services {
    padding: 60px 15px 0;
    gap: 20px
  }

  .workflow-header-services {
    margin-bottom: 20px
  }

  .workflow-grid-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
    max-width: 500px
  }

  .workflow-card-services {
    padding: 8px 6px;
    min-height: 90px
  }

  .workflow-card-services .card-title {
    font-size: .8rem
  }

  .workflow-card-services .card-description {
    font-size: .65rem
  }

  .bridge-services-content {
    flex-direction: column;
    gap: 15px;
    align-items: center
  }

  .left,
  .middle {
    flex-direction: row;
    justify-content: center;
    gap: 10px
  }

  .middle {
    margin-left: 0 !important
  }

  .mid-left {
    margin-top: 0 !important;
    margin-left: 0 !important
  }

  .card.small {
    width: 100px;
    height: 120px
  }

  .card.large {
    width: 160px;
    height: 200px
  }

  .card.text {
    width: 120px
  }
}

@media(max-width:576px) {
  .workflow-grid-services {
    grid-template-columns: 1fr;
    max-width: 300px
  }

  .workflow-card-services {
    min-height: 80px;
    padding: 10px 8px
  }
}

@media(max-width:480px) {
  .bridge-services {
    padding: 60px 15px 0;
    gap: 15px
  }

  .workflow-header-services .workflow-title {
    font-size: 1.3rem
  }

  .workflow-card-services {
    padding: 8px 6px;
    min-height: 75px
  }

  .left,
  .middle {
    flex-direction: column;
    align-items: center;
    gap: 8px
  }

  .card.small {
    width: 90px;
    height: 110px
  }

  .card.large {
    width: 140px;
    height: 180px
  }

  .card.text {
    width: 105px
  }
}

.workflow-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden
}

.workflow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(50, 95, 244, 0.03) 0, transparent 50%), radial-gradient(circle at 80% 70%, rgba(96, 197, 120, 0.03) 0, transparent 50%);
  pointer-events: none
}

.workflow-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #325ff4;
  margin-bottom: 12px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.workflow-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 12px 0;
  line-height: 1.2
}

.workflow-subtitle {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin: 0 auto
}

.workflow-card {
  background: #fff;
  border: 1px solid #e0e4f5;
  border-radius: 12px;
  padding: 18px 16px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(26, 35, 50, 0.04)
}

.workflow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #325ff4, #60c578);
  opacity: 0;
  transition: opacity .3s ease
}

.workflow-card:hover {
  transform: translateY(-4px);
  border-color: #325ff4;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.12), 0 0 0 1px rgba(50, 95, 244, 0.1)
}

.workflow-card:hover::before {
  opacity: 1
}

.card-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #325ff4, #60c578);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .12;
  line-height: 1;
  margin-bottom: 4px;
  transition: opacity .3s ease
}

.workflow-card:hover .card-number {
  opacity: .2
}

.card-title {
  font-size: .95rem;
  font-weight: 600;
  color: #1a2332;
  margin: 0 0 6px 0;
  line-height: 1.4
}

.card-description {
  font-size: .8rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.5
}

@media(max-width:992px) {
  .workflow-section {
    padding: 60px 0
  }

  .workflow-title {
    font-size: 2rem
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 220px);
    justify-content: center
  }
}

@media(max-width:576px) {
  .workflow-section {
    padding: 50px 0
  }

  .workflow-header {
    margin-bottom: 36px
  }

  .workflow-title {
    font-size: 1.75rem
  }

  .workflow-subtitle {
    font-size: .9375rem
  }

  .workflow-grid {
    grid-template-columns: 220px
  }
}

.container1 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12);
  position: relative;
  z-index: 10;
}

@media(max-width:768px) {
  .container1 {
    padding: 20px
  }
}

.cards-grids {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 56px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto
}

.coming-soon-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
  height: 400px;
  justify-content: center;
  align-items: center
}

.coming-soon-card {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 1;
  transition: all .3s ease
}

.coming-soon-img-wrapper {
  width: 100%;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative
}

.coming-soon-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: .6
}

.coming-soon-card:first-child {
  opacity: 1 !important
}

@keyframes slideInLeft {
  0% {
    transform: translateX(200%)
  }

  100% {
    transform: translateX(-200%)
  }
}

.coming-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  padding: 10px 0;
  z-index: 10;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 1
}

.coming-overlay-content {
  display: flex;
  width: max-content;
  animation: marquee-ticker 6s linear infinite;
  white-space: nowrap;
  color: #fff;
  gap: 0
}

.coming-overlay-content span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-right: 60px
}

.coming-overlay-content h2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  display: none
}

@keyframes marquee-ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.coming-overlay-content p {
  display: none
}

.coming-soon-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.coming-soon-card:first-child .coming-soon-content h3 {
  font-size: 22px;
  color: #2b2b3f
}

.coming-soon-card:first-child .coming-soon-content p {
  color: #556
}

.coming-soon-content h3 {
  margin: 0;
  font-size: 18px;
  color: #6b6b7f;
  font-weight: 700
}

.coming-soon-content p {
  margin: 0;
  font-size: 14px;
  color: #9e9eac;
  line-height: 1.6
}

@media(max-width:1200px) {
  .cards-grids {
    justify-content: center
  }
}

@media(max-width:992px) {
  .coming-soon-grid {
    height: auto
  }

  .why-aagento-visual>div {
    gap: 40px !important
  }

}

@media(max-width:768px) {
  .navbar-links {
    display: none
  }

  .navbar {
    padding: 0 16px
  }

  .navbar-brand {
    margin-left: 0
  }

  .nav-right {
    margin-right: 0
  }

  .hero-buttons {
    width: 100%
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    box-sizing: border-box
  }

  .hero-sub br {
    display: none
  }

  .coming-soon-card,
  .coming-soon-card:first-child {
    width: 100%
  }

  .coming-soon-img-wrapper {
    aspect-ratio: auto;
    height: 250px
  }

  .pre-footer-cta {
    height: auto;
    padding: 0px 24px
  }

  .cta-container h2 {
    font-size: 32px
  }

  .cta-container p br {
    display: none
  }

  .tool {
    font-size: 9px;
    padding: 4px 6px;
    white-space: nowrap
  }

  .site-footer {
    padding: 0px 24px 18px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px
  }

  .footer-giant-text {
    width: 100%;
    margin-top: 0;
    justify-content: center
  }

  .footer-copyright {
    text-align: center;
    white-space: normal;
    order: 3;
    font-size: 13px;
  }
}

@media(max-width:500px) {
  .bridge-services {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 24px;
  }

  .capabilities-section {
    padding-left: 20px;
    padding-right: 20px
  }

  .capabilities-section .card {
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box
  }

  .cards-grids {
    justify-content: center
  }

  .hero-heading {
    font-size: 36px
  }
}

@media(max-width:768px) {
  .bridge-components {
    height: auto;
    min-height: unset;
    padding: 32px 24px 0;
    overflow: visible;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 40px
  }

  .bridge-header {
    padding: 0 4px
  }

  .bridge-components .tool {
    display: none !important
  }

  .bridge-overlay {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    position: relative
  }

  .bridge-components .viewer {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden
  }

  #mainImage {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 16px;
    object-fit: cover;
    display: block
  }

  .viewer img {
    width: 100%;
    height: auto
  }

  .mobile-tool-grid {
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10
  }

  .mobile-tool-grid::-webkit-scrollbar {
    display: none
  }

  .mobile-tool-grid {
    -ms-overflow-style: none;
    scrollbar-width: none
  }

  .mobile-tool-pill {
    background: #fff;
    color: #000;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .25s, color .25s, transform .2s;
    white-space: nowrap;
    border: 0;
    outline: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0
  }

  .mobile-tool-pill:hover,
  .mobile-tool-pill.active {
    background: #eaf871;
    color: #000;
    transform: translateY(-2px)
  }
}

@media(min-width:769px) {
  .mobile-tool-grid {
    display: none
  }
}

@media(max-width:1024px) {
  .why-aagento {
    padding-top: 54px
  }

  .why-aagento-header {
    margin-bottom: 26px
  }

  .why-aagento-grid {
    grid-template-columns: 1fr;
    margin-left: 40px;
    margin-right: 40px;
    gap: 60px
  }

  .why-aagento-copy {
    min-height: auto
  }

  .why-aagento-visual {
    transform: scale(0.8);
    transform-origin: center center;
    width: 100%
  }
}

@media(max-width:768px) {
  .why-aagento {
    padding: 48px 0 56px
  }

  .why-aagento-header {
    padding: 0 20px;
    margin-bottom: 20px
  }

  .why-aagento-grid {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 0;
    gap: 40px
  }

  .why-aagento-visual {
    transform: none;
    width: 100% !important;
    min-height: 540px;
    position: relative
  }

  .why-aagento-cards {
    flex-direction: column !important;
    align-items: center !important;
    gap: 28px !important;
    width: 100% !important;
    padding: 16px 0
  }

  .why-aagento-middle-column {
    flex-direction: column !important;
    width: 100% !important;
    gap: 20px !important;
    margin-left: 0 !important;
    align-items: center !important
  }

  .why-aagento-visual .card-wrapper {
    margin: 0 !important;
    width: 90%
  }

  .why-stable-wrapper {
    width: auto !important
  }

  #why-card-stable {
    width: 180px !important;
    height: 250px !important;
    margin-right: 0 !important
  }

  #why-card-text {
    width: 100% !important;
    height: 130px !important
  }

  #why-card-flux {
    width: 270px !important;
    height: 130px !important
  }

  #node-svg-2 {
    display: block !important
  }
}

@media(max-width:992px) {

  .section-title,
  .workflow-header-services .workflow-title,
  .why-aagento h2,
  .target-users-heading {
    font-size: 36px !important
  }

  .target-users-orbit {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px
  }

  .target-users-orbit::before,
  .target-users-orbit::after {
    display: none
  }

  .target-users-center {
    width: min(300px, 70vw)
  }

  .target-user-point {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    transform: none;
    animation: targetMobileFloat 4.5s ease-in-out infinite
  }

  .target-users-orbit .target-user-point {
    align-self: stretch
  }

  .point-1,
  .point-2,
  .point-3,
  .point-4,
  .point-5,
  .point-6,
  .point-7,
  .point-8 {
    --x: 0px;
    --y: 0px
  }

  @keyframes targetMobileFloat {

    0%,
    100% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-8px)
    }
  }
}

@media(max-width:768px) {

  .section-title,
  .workflow-header-services .workflow-title,
  .why-aagento h2,
  .target-users-heading {
    font-size: 32px !important
  }

  .section-subtitle,
  .workflow-header-services .workflow-subtitle {
    font-size: 15px !important
  }
}

@media(max-width:560px) {

  .section-title,
  .workflow-header-services .workflow-title,
  .why-aagento h2,
  .section-header h2,
  .target-users-heading {
    font-size: 28px !important
  }

  .section-subtitle,
  .workflow-header-services .workflow-subtitle {
    font-size: 14px !important
  }
}

#bridge-gallery-section {
  --pk: #325ff4;
  --bg: #07080a;
  --cw: 400px;
  --ch: 300px
}

#bridge-gallery-section {
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  color: #fff
}

#bridge-gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 60%, rgba(50, 95, 244, 0.1) 0, transparent 70%), radial-gradient(ellipse 30% 20% at 50% 30%, rgba(50, 95, 244, 0.06) 0, transparent 60%);
  pointer-events: none
}

#bridge-gallery-section .header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 36px
}

#bridge-gallery-section .header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  letter-spacing: 3px;
  line-height: 1
}

#bridge-gallery-section .header h1 em {
  color: var(--pk);
  font-style: normal
}

#bridge-gallery-section .header p {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38)
}

#bridge-gallery-section .type-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 20px;
  box-shadow: #d7d6d6 0 7px 29px 0;
  padding: 6px
}

#bridge-gallery-section .type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background .3s, transform .2s;
  min-width: 100px
}

#bridge-gallery-section .type-btn:hover {
  background: rgba(255, 255, 255, 0.06)
}

#bridge-gallery-section .type-btn.active {
  background: var(--pk);
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%)
}

#bridge-gallery-section .type-icon {
  width: 32px;
  height: 32px;
  opacity: .5;
  transition: opacity .3s
}

#bridge-gallery-section .type-btn.active .type-icon {
  opacity: 1;
  filter: brightness(0) invert(1)
}

#bridge-gallery-section .type-btn:not(.active) .type-icon {
  opacity: 1
}

#bridge-gallery-section .type-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, );
  transition: color .3s
}

#bridge-gallery-section .type-btn.active .type-name {
  color: #fff
}

#bridge-gallery-section .type-count {
  font-size: 10px;
  color: #000;
  transition: color .3s
}

#bridge-gallery-section .type-btn.active .type-count {
  color: rgba(255, 255, 255, 0.65)
}

#bridge-gallery-section .scene {
  position: relative;
  z-index: 2;
  width: min(100vw, 1000px);
  height: calc(var(--ch) + 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 42%
}

#bridge-gallery-section .track {
  position: relative;
  width: var(--cw);
  height: var(--ch);
  transform-style: preserve-3d
}

#bridge-gallery-section .bg-card {
  position: absolute;
  width: 400px;
  height: 300px;
  border-radius: 20px;
  overflow: visible;
  cursor: pointer;
  transition: transform .7s cubic-bezier(.2, .8, .3, 1), opacity .7s ease, box-shadow .5s ease;
  will-change: transform
}

#bridge-gallery-section .bg-card img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px solid transparent;
  box-sizing: border-box;
  object-fit: fill;
  display: block;
  transition: filter .5s ease, transform .5s ease, border-color .5s ease;
  filter: grayscale(100%) brightness(.9);
  pointer-events: none
}

#bridge-gallery-section .bg-card.active img {
  filter: brightness(1) saturate(1.05);
  border-color: #000
}

#bridge-gallery-section .bg-card.active:hover img {
  transform: scale(1.04)
}

#bridge-gallery-section .cov {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  opacity: 0;
  transition: opacity .5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none
}

#bridge-gallery-section .bg-card.active .cov {
  opacity: 1
}

#bridge-gallery-section .cov-num {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 20px;
  transition: background .4s, color .4s, border-color .4s;
  display: inline-block;
  white-space: nowrap
}

#bridge-gallery-section .bg-card.active .cov-num {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  color: #fff
}

#bridge-gallery-section .cov-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px
}

#bridge-gallery-section .cov-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.5
}

#bridge-gallery-section .card-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 20px;
  transition: opacity .4s
}

#bridge-gallery-section .bg-card.active .card-num {
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  color: #fff;
  opacity: 1
}

#bridge-gallery-section .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s
}

#bridge-gallery-section .nav:hover {
  background: var(--pk);
  border-color: var(--pk);
  color: #fff
}

#bridge-gallery-section .nav-l {
  left: -8px
}

#bridge-gallery-section .nav-r {
  right: -8px
}

#bridge-gallery-section .info-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  min-height: 40px
}

#bridge-gallery-section .info-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  transition: opacity .4s
}

#bridge-gallery-section .info-sep {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.15)
}

#bridge-gallery-section .info-desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  max-width: 340px;
  line-height: 1.5
}

#bridge-gallery-section .dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 7px;
  margin-top: 40px
}

#bridge-gallery-section .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(78, 78, 78, 0.18);
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s
}

#bridge-gallery-section .dot.active {
  background: var(--pk);
  width: 24px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(50, 95, 244, 0.5)
}

#bridge-gallery-section .track.switching .bg-card {
  transition: opacity .25s ease;
  opacity: 0 !important
}

@media(max-width:1024px) {
  #bridge-gallery-section .track {
    transform: scale(0.85)
  }

  #bridge-gallery-section .scene {
    height: calc(var(--ch) * 0.85 + 80px);
  }
}

@media(max-width:768px) {
  #bridge-gallery-section .track {
    transform: scale(0.65)
  }

  #bridge-gallery-section .scene {
    height: calc(var(--ch) * 0.65 + 80px);
    width: 100%;
  }

  #bridge-gallery-section .type-bar {
    justify-content: flex-start;
    border-radius: 12px;
    padding: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none
  }

  #bridge-gallery-section .type-bar::-webkit-scrollbar {
    display: none
  }

  #bridge-gallery-section .type-name {
    font-size: 9px;
    letter-spacing: .5px;
    text-align: center
  }

  #bridge-gallery-section .type-count {
    font-size: 8px
  }

  #bridge-gallery-section .header h1 {
    font-size: clamp(36px, 8vw, 48px)
  }
}

@media(max-width:480px) {
  #bridge-gallery-section .track {
    transform: scale(0.45);
    width: 100%;
  }

  #bridge-gallery-section .scene {
    height: calc(var(--ch) * 0.45 + 80px)
  }

  #bridge-gallery-section .type-btn {
    min-width: 75px;
    padding: 6px 8px
  }

  #bridge-gallery-section .type-icon {
    width: 24px;
    height: 24px
  }

  #bridge-gallery-section .bg-card {
    width: 100%;
    height: 200px;
  }

}

.custom-dark-footer {
  background-color: #fff;
  color: #efeaea;
  font-family: 'DM Sans', 'Arial', sans-serif
}

.cdf-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px
}

.cdf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px
}

.cdf-top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px
}

.cdf-icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #325ff4;
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff
}

.cdf-icon-wrap svg {
  width: 24px;
  height: 24px
}

.cdf-top-item p {
  margin: 0;
  font-size: 14px;
  color: #000
}

.cdf-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 0 40px 0
}

.cdf-middle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 60px
}

.cdf-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 150px
}

.cdf-col h4 {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px 0
}

.cdf-col a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color .3s
}

.cdf-col a:hover {
  color: #3e3d3d
}

.cdf-subscribe {
  flex: 2;
  min-width: 280px
}

.cdf-sub-form {
  display: flex;
  background: #fcfcfc;
  border-radius: 8px;
  overflow: hidden;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px
}

.cdf-sub-form input {
  flex: 1;
  border: 1px solid #325ff4;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 8px;
  outline: 1px solid #325ff4;
  color: #333
}

.cdf-sub-form button {
  background: linear-gradient(135deg, #306bca 0, #2f70b9 30%, #2d7c8f 70%, #28a84a 90%);
  border: 0;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all .3s
}

.cdf-sub-form button :hover {
  background-color: #325ff4;
  color: white
}

.cdf-sub-form button svg {
  width: 20px;
  height: 30px
}

.cdf-subscribe p {
  margin: 0;
  font-size: 12px;
  color: #777
}

.cdf-bottom {
  background-color: #fff;
  padding: 40px 0;
  padding-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3)
}

.cdf-bottom-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 15px
}

.cdf-socials {
  display: flex;
  gap: 15px
}

.cdf-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #325ff4;
  transition: all .3s
}

.cdf-socials svg {
  width: 16px;
  height: 16px
}

.cdf-copyright {
  margin: 0;
  font-size: 13px;
  color: #64748b
}

.cdf-scroll-top {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 36px;
  height: 36px;
  background-color: #325ff4;
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s
}

.cdf-scroll-top:hover {
  transform: translateY(-3px)
}

.cdf-scroll-top svg {
  width: 18px;
  height: 18px
}

@media(max-width:992px) {
  .cdf-top {
    grid-template-columns: 1fr
  }

  .cdf-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left
  }
}

@media(max-width:768px) {
  .cdf-top {
    gap: 20px
  }

  .cdf-bottom-inner {
    align-items: center;
    text-align: center
  }

  .cdf-scroll-top {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px
  }
}

@media(max-width:480px) {
  .custom-dark-footer {
    padding-top: 36px
  }

  .cdf-top-item {
    padding: 24px
  }

  .cdf-bottom-inner {
    gap: 16px
  }
}

#wta-section {
  position: relative;
  background: #ebebeb
}

#wta-sticky {
  min-height: 110vh;
  overflow: hidden;
  background: #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 50px 0 0
}

#wta-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
  position: relative;
  z-index: 30;
  width: 100%
}

.wta-head {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  margin-top: 0;
  line-height: 1.2
}

.wta-head.is-dim {
  color: #9a9a9a
}

.wta-head.is-active {
  color: #111
}

#wta-toggle {
  height: 42px;
  width: 80px;
  background: #acacac;
  border-radius: 999px;
  position: relative;
  flex-shrink: 0
}

#wta-knob {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 5%;
  transform: translateY(-50%)
}

#wta-canvas {
  position: absolute;
  inset: 0;
  top: 13%;
  z-index: 10
}

.wta-card {
  position: absolute;
  border-radius: 18px;
  font-family: 'DM Sans', Arial, sans-serif
}

.wta-back-card {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.wta-back {
  border-radius: 20px
}

.wta-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #222
}

.wta-tag-sub {
  font-weight: 400;
  color: #888
}

.wta-img-ph {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px
}

.wta-img-tall {
  height: 300px;
  position: relative;
  overflow: hidden
}

.wta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateZ(0)
}

#wc-prompt {
  left: 12%;
  top: 30%;
  width: clamp(220px, 28vw, 320px);
  background: #e8f542;
  padding: 24px 22px 28px;
  border-radius: 20px
}

#wc-prompt .wta-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #111
}

#wc-compositor {
  left: 55%;
  top: 60%;
  width: 205px;
  height: 150px
}

.compositor-img {
  background-image: url('../assets/monitoring/back-image1.jpeg');
  background-size: cover
}

#wc-survey {
  left: 35%;
  top: 60%;
  width: 255px;
  height: 170px
}

.survey-img {
  background-image: url('../assets/monitoring/back-image1.jpeg');
  background-size: cover
}

#wc-model {
  left: 38%;
  top: 26%;
  width: 255px;
  height: 200px
}

.model-img {
  background-image: url('../assets/monitoring/back-image2.jpeg');
  background-size: cover
}

#wc-color {
  left: 59%;
  top: 25%;
  width: 175px;
  height: 150px
}

.color-img {
  background-image: url('../assets/monitoring/back-image1.jpeg');
  background-size: cover
}

#wc-output {
  left: 68%;
  top: 30%;
  width: 250px
}

#wta-app {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 130px;
  bottom: 20px;
  display: flex;
  gap: 14px;
  opacity: 0;
  z-index: 5;
  pointer-events: none
}

#wc-output {
  position: relative;
  padding: 0;
  background-color: white;
  height: 300px;
  width: 300px;
  display: flex;
  flex-direction: column;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px
}

#wc-prompt {
  padding: 0;
  background-color: white;
  height: 300px;
  width: 300px;
  display: flex;
  flex-direction: column
}

.output-tag {
  height: 30px;
  padding: 20px 10px;
  display: flex;
  align-items: center
}

.output-box {
  background: white;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden
}

.run-button-wrapper {
  left: 11.33%;
  top: 78%;
  margin-left: .5rem;
  margin-top: -1.5rem
}

.run-btn {
  width: 300px;
  height: 110px;
  background: white;
  border: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease
}

.run-btn:active {
  transform: scale(0.98)
}

.prompt-p {
  width: 100%;
  height: 100%;
  padding: 20px
}

#wta-app-prompt {
  width: 29%;
  flex-shrink: 0;
  background: #e8f542;
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'DM Sans', Arial, sans-serif
}

#wta-app-prompt p {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  flex: 1;
  margin: 0
}

#wta-run-btn {
  background: #fff;
  border: 2px solid #222;
  border-radius: 12px;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer
}

#wta-app-output {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

#wta-app-output-img {
  flex: 1;
  background: linear-gradient(135deg, #b0c4d8, #7a96aa);
  border-radius: 12px
}

@media(max-width:1100px) and (min-width:601px) {
  .wta-head {
    font-size: clamp(1.2rem, 3.8vw, 2.4rem)
  }

  #wta-heading {
    gap: 12px;
    padding-top: 30px
  }

  #wta-toggle {
    width: clamp(44px, 5.5vw, 72px);
    height: clamp(24px, 3vw, 40px)
  }

  #wc-prompt {
    left: 12%;
    top: 30%;
    width: 22vw;
    height: 23vw;
    padding: 0
  }

  #wc-model {
    left: 42%;
    top: 12%;
    width: 13vw
  }

  #wc-color {
    left: 59%;
    top: 16%;
    width: 14vw
  }

  #wc-output {
    left: 68%;
    top: 30%;
    width: 19vw;
    height: 23vw
  }

  #wc-compositor {
    left: 72%;
    top: 85%;
    width: 10vw;
    min-height: 6vw
  }

  .wta-img-ph {
    height: 8vw
  }

  .wta-img-tall {
    height: 18vw
  }

  .run-button-wrapper {
    left: 11.5%;
    top: 74%
  }

  .run-btn {
    width: 22vw;
    height: 8vw;
    font-size: clamp(0.8rem, 1.6vw, 1.4rem);
    border-radius: 14px
  }

  .wta-card {
    padding: 12px;
    border-radius: 12px
  }

  .output-tag {
    padding: 10px 8px
  }

  .prompt-p {
    padding: 10px
  }
}

@media(max-width:600px) {
  .wta-head {
    font-size: clamp(23px, 3.5vw, 3rem);
    margin-bottom: 0
  }

  #wta-section .section-title {
    text-align: center
  }

  #wta-canvas {
    position: absolute;
    top: 20%
  }

  #wta-heading {
    gap: 8px;
    padding-top: 20px
  }

  #wta-toggle {
    width: 32px;
    height: 18px
  }

  #wc-prompt {
    left: 8%;
    top: 18%;
    width: 32vw;
    height: 30vw;
    padding: 0
  }

  #wc-model {
    left: 42%;
    top: 21%;
    width: 23vw;
    height: 20vw
  }

  #wc-survey {
    left: 10%;
    top: 50%;
    width: 40vw;
    height: 25vw
  }

  #wc-color {
    left: 28%;
    top: 68%;
    width: 50vw;
    height: 30vw
  }

  #wc-output {
    left: 62%;
    right: auto;
    top: 18%;
    width: 28vw;
    height: 34vw
  }

  #wc-compositor {
    left: 60%;
    top: 40%;
    width: 30vw;
    height: 25vw
  }

  .wta-img-ph {
    height: 100%
  }

  .run-button-wrapper {
    left: 4.5%;
    top: 41%
  }

  .run-btn {
    width: 32vw;
    height: 12vw;
    font-size: clamp(0.6rem, 2.5vw, 1rem);
    border-radius: 10px
  }

  .wta-card {
    padding: 6px;
    border-radius: 8px
  }

  .wta-tag {
    font-size: 7px;
    letter-spacing: 1px
  }

  .output-tag {
    padding: 6px 5px;
    height: auto
  }

  .prompt-p {
    padding: 6px;
    font-size: 8px
  }

  #wc-prompt .wta-tag {
    font-size: 7px;
    letter-spacing: 1px
  }

  .wta-tag span {
    font-size: 5px;
    margin-left: 3px
  }

  .wta-back-card {
    gap: 2px
  }

  #wta-app {
    flex-direction: column;
    top: 90px
  }

  #wta-app-prompt {
    width: 100%
  }
}

.video-showcase-section {
  padding: 0 24px 80px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none
}

.video-showcase-inner {
  max-width: 850px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.video-showcase-section .section-label {
  color: #325ff4
}

.video-showcase-section .section-title {
  color: #000
}

.video-showcase-section .section-subtitle {
  color: #2b2c2f;
  margin-bottom: 48px
}

.video-showcase-header {
  text-align: center;
  margin-bottom: 48px
}

.video-player-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08)
}

.video-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: transparent;
  border: 2px solid rgba(50, 95, 244, 0.25);
  animation: videoGlowPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes videoGlowPulse {

  0%,
  100% {
    opacity: .4;
    border-color: rgba(50, 95, 244, 0.25)
  }

  50% {
    opacity: 1;
    border-color: rgba(50, 95, 244, 0.55)
  }
}

.video-topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.video-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px
}

.video-avatar img {
  width: 22px;
  height: 22px;
  object-fit: contain
}

.video-channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.video-channel-name {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: .2px
}

.video-channel-sub {
  font-size: 11px;
  color: rgba(49, 49, 49, 0.45)
}

.video-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  background: #325ff4;
  padding: 4px 10px;
  border-radius: 8px
}

#showcaseVideo {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fff;
  position: relative;
  z-index: 2;
  cursor: pointer
}

.video-center-play {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity .3s ease
}

.video-center-play.hidden {
  opacity: 0;
  pointer-events: none
}

.video-center-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(50, 95, 244, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
  box-shadow: 0 8px 32px rgba(50, 95, 244, 0.5)
}

.video-center-play-btn:hover {
  transform: scale(1.1);
  background: #325ff4
}

.video-center-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px
}

@keyframes flashPlay {
  0% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.25);
    opacity: .7
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.video-center-play-btn.flash {
  animation: flashPlay .3s ease
}

.video-progress-wrap {
  padding: 10px 0 6px;
  cursor: pointer
}

.video-progress-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: visible;
  transition: height .2s ease
}

.video-progress-wrap:hover .video-progress-track {
  height: 6px
}

.video-progress-buffered {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  width: 0;
  transition: width .3s linear
}

.video-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #325ff4, #3f63f4);
  border-radius: 4px;
  width: 0;
  transition: width .1s linear
}

.video-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(50, 95, 244, 0.5);
  transition: transform .2s ease, left .1s linear;
  pointer-events: none
}

.video-progress-wrap:hover .video-progress-thumb {
  transform: translate(-50%, -50%) scale(1)
}

.video-skip-btn {
  flex-direction: row;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, 0.7)
}

.video-skip-btn span {
  line-height: 1;
  margin-top: 1px
}

.video-skip-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.video-volume-wrap {
  display: flex;
  align-items: center;
  gap: 4px
}

.video-volume-slider-wrap {
  width: 0;
  overflow: hidden;
  transition: width .25s ease
}

.video-volume-wrap:hover .video-volume-slider-wrap {
  width: 80px
}

.video-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 76px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  outline: 0;
  cursor: pointer
}

.video-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer
}

.video-volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 0
}

.video-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  letter-spacing: .3px;
  padding: 0 4px
}

.video-speed-wrap {
  position: relative
}

.video-speed-btn {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  letter-spacing: .5px
}

.video-speed-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(18, 18, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 80px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 99
}

.video-speed-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all
}

.video-speed-menu button {
  background: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  cursor: pointer;
  text-align: center;
  transition: background .15s, color .15s
}

.video-speed-menu button:hover,
.video-speed-menu button.active {
  background: rgba(50, 95, 244, 0.25);
  color: #fff
}

.video-speed-menu button.active {
  color: #3f63f4
}

@media(max-width:768px) {
  .video-showcase-section {
    padding: 0 16px 60px
  }

  .video-topbar {
    padding: 10px 12px
  }

  .video-avatar {
    width: 30px;
    height: 30px
  }

  .video-channel-name {
    font-size: 12px
  }

  .video-channel-sub {
    font-size: 10px
  }

  .video-badge {
    font-size: 9px;
    padding: 3px 8px
  }

  .video-time {
    font-size: 11px
  }

  .video-volume-wrap:hover .video-volume-slider-wrap {
    width: 60px
  }

  .video-volume-slider {
    width: 56px
  }
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) {
  width: 100vw !important;
  height: 100vh !important;
  background: #000 !important;
  border-radius: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .video-glow {
  display: none !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .video-topbar {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: linear-gradient(rgba(0, 0, 0, 0.75), transparent) !important;
  border-bottom: none !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) #showcaseVideo {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  background: #000 !important;
  z-index: 1 !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .video-center-play {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 50 !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .video-controls {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92)) !important;
  border-top: none !important;
  border-radius: 0 !important;
  padding-bottom: 20px !important
}

.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .gsap-marker-start,
.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .gsap-marker-end,
.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .gsap-marker-scroller-start,
.video-player-wrapper:is(:fullscreen, :-webkit-full-screen, :-moz-full-screen) .gsap-marker-scroller-end {
  display: none !important
}

video#wta-video {
  width: 100%;
  height: auto;
  max-width: 60%;
  padding: 30px 0 50px
}

@media(min-width:1101px) and (max-width:1366px) {
  .bridge-services {
    gap: 28px
  }

  .workflow-header-services {
    padding: 0 24px
  }

  .card.small {
    width: 110px;
    height: 130px
  }

  .card.large {
    width: 170px;
    height: 220px
  }

  .card.text {
    width: 135px;
    font-size: 12px
  }

  #card-rodin {
    height: 132px !important;
    width: 220px !important
  }

  #card-color {
    height: 195px !important;
    width: 140px !important
  }

  #card-text-1 {
    width: 135px !important;
    font-size: 12px !important
  }

  #card-flux,
  #card-flux-1 {
    height: 150px !important;
    width: 250px !important
  }

  #card-video {
    height: 195px !important;
    width: 120px !important
  }

  .left {
    gap: 1.25rem !important
  }

  .middle {
    gap: 1.25rem !important;
    margin-left: 0 !important
  }

  .mid-left {
    margin-top: 0 !important;
    margin-left: 0 !important;
    align-items: center !important
  }

  .bridge-services-content {
    gap: 14px !important
  }

  .why-aagento-grid {
    margin-left: 48px !important;
    margin-right: 48px !important;
    gap: 1rem !important
  }

  .why-aagento-cards {
    gap: 16px !important
  }

  #why-card-stable {
    height: 195px !important;
    width: 155px !important;
    margin-right: 20px !important
  }

  #why-card-text {
    height: 125px !important;
    width: 235px !important
  }

  #why-card-flux {
    height: 118px !important;
    width: 310px !important
  }

  .why-text-wrapper {
    margin-left: 50px !important
  }

  .why-flux-wrapper {
    margin-left: 18px !important
  }

  .why-aagento-middle-column {
    gap: .75rem !important
  }
}

/* Waitlist section styles (simple, follow contact layout) */
.waitlist-section {
  padding: 60px 24px;
  background: #ffffff;
  color: var(--text-primary);
  /* padding-bottom: 0px; */
}

.waitlist-section .waitlist-wrapper {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(31, 96, 255, 0.12);
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
}

.waitlist-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: center;
}

.waitlist-copy h2 {
  color: var(--text-primary);
  margin: 0 0 8px
}

.waitlist-form .waitlist-row {
  margin-bottom: 12px
}

.waitlist-form input[type="email"] {
  width: calc(100% - 110px);
  box-shadow: 0 6px 20px rgba(50, 95, 244, 0.06);
  padding: 10px 16px;
  border: 1px solid rgba(15, 23, 79, 0.12);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--text-primary);
  font-size: .95rem;
  outline: 0;
}

.waitlist-compact {
  display: flex;
  gap: 12px
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer
}

.waitlist-success {
  margin-top: 12px;
  color: var(--accent-start)
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}

/* Active State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-box {
  width: min(400px, 90%);
  padding: 20px;
  border-radius: 24px;

  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);

  backdrop-filter: blur(20px);

  transform: scale(.8) translateY(40px);
  opacity: 0;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    opacity .45s ease;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .45),
    0 0 40px rgba(50, 95, 244, .2);
}

/* AI Open Animation */
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-box h2 {
  margin-bottom: 12px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.modal-box p {
  text-align: center;
  margin-bottom: 25px;
}

.modal-ai-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  display: flex;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  animation: pulseAI 2s infinite;
}

@keyframes pulseAI {
  0% {
    box-shadow: 0 0 0 0 #325ff480;
  }

  70% {
    box-shadow: 0 0 0 18px #325ff400;
  }

  100% {
    box-shadow: 0 0 0 0 #325ff400;
  }
}

.modal-box input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 5px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(50, 95, 244, 0.06);
  padding: 10px 16px;
  border: 1px solid rgba(15, 23, 79, 0.12);
  border-radius: 10px;
  background: #f8fbff;
  color: var(--text-primary);
  font-size: .95rem;
  outline: 0;
}

.modal-box input:focus {
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px 10px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.who-we-are {
  padding: 60px 24px 0;
  background: #fff;
}


.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  color: #2f55d4;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-header h2 {
  margin-top: 15px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #101828;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  row-gap: 0;
}

.intro {
  font-size: 16px;
  color: #2b2c2f;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 16px;
}

.info-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 20px;
  background: rgba(47, 85, 212, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.info-card span {
  display: block;
  color: #2f55d4;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card p {
  color: #2b2c2f;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.feature-section {
  margin-top: 20px;
}

.feature-section h3,
.ambition-section h3 {
  text-align: center;
  color: #2f55d4;
  font-size: 22px;
  margin-bottom: 30px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 12px;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 10px;
}

.feature-card p {
  color: #2b2c2f;
  line-height: 1.6;
}

.ambition-section {
  margin-top: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  background: #f8fafc;
  border-radius: 20px;
  text-align: center;
  padding: 35px 20px;
}

.stat-box h4 {
  color: #2f55d4;
  font-size: 52px;
  margin-bottom: 10px;
}

.stat-box p {
  color: #475467;
}

.bottom-tagline {
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #344054;
}

.bottom-tagline strong {
  color: #2b2c2f;
  background: linear-gradient(110deg, #2f55d4 0, #4282b0 45%, #60c578 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
}

@media (max-width: 1200px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 42px;
  }

  .intro {
    font-size: 18px;
  }

  .bottom-tagline {
    font-size: 22px;
  }

  .bridge-services-content>.left {
    flex: 1;
    min-width: auto;
    width: 100%;
    flex-direction: column;
    /* Swap cards: Topo on left, Blue UI on right */
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
  }

  .bridge-services-content>.middle {
    flex: 1;
    min-width: auto;
    width: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
  }

  .card-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }



  /* .card-wrapper:has(#card-color) .card-label {
    display: none;
  } */

  /* Make sure flex ratios still match the cards, just swapped visually */
  .bridge-services-content>.left>.card-wrapper:first-child {
    flex: 1;
    width: 100%
      /* card-color (now on right) */
  }

  .bridge-services-content>.left>.card-wrapper:last-child {
    flex: 1;
    width: 100%
      /* card-rodin (now on left) */
  }

  .bridge-services-content>.middle>.card-wrapper:first-child {
    margin-top: 0px;
    width: 100%;
  }

  .bridge-services-content {
    gap: 60px !important;
  }

  .mid-left,
  .card.text {
    width: 100%;
  }

  .card-wrapper div#card-rodin {
    width: 100% !important;
    height: 165px !important;
    aspect-ratio: 260/165;
    margin: 0;
  }

  .card-wrapper div#card-color {
    width: 100% !important;
    height: 250px !important;
    aspect-ratio: 200/250;
    margin: 0;
  }

  .card-wrapper div#card-flux-1 {
    width: 100% !important;
    height: 150px !important;
    aspect-ratio: 320/192;
    margin: 0;
  }

  .card-wrapper div#card-flux {
    width: 100% !important;
    height: 150px !important;
    aspect-ratio: 320/192;
    margin: 0;
  }


  .card-wrapper.export-column div#card-video {
    width: 100% !important;
    height: auto !important;
  }

  .export-icons-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  svg#node-svg {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 20;
    overflow: visible;
  }

  .bridge-services-content {
    padding: 0;
  }
}

/* ── Form Error & Validation styles ── */
.contact-field input.error,
.contact-field textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
  background: #fff8f8 !important;
}

.error-msg {
  display: none;
  color: #ef4444;
  font-size: 0.82rem;
  margin-top: 4px;
  font-weight: 500;
  text-align: left;
  animation: fieldErrorFadeIn 0.2s ease forwards;
}

@keyframes fieldErrorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Captcha styles ── */
.captcha-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: row;
}

#captchaCanvas,
#captchaCanvasWL {
  background: #f0f3ff;
  border: 1px solid rgba(15, 23, 79, 0.12);
  border-radius: 10px;
  display: block;
  cursor: default;
  height: 40px;
}

.btn-refresh-captcha {
  background: none;
  border: 1px solid rgba(15, 23, 79, 0.12);
  color: var(--text-secondary);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh-captcha svg {
  transition: transform 0.2s ease;
}

.btn-refresh-captcha:hover {
  background: #f8fbff;
  color: var(--accent);
  border-color: rgba(31, 96, 255, 0.3);
}

.btn-refresh-captcha:hover svg {
  transform: rotate(60deg);
}

.captcha-container input {
  flex: 1;
  min-width: 140px;
  height: 40px;
  margin: 0;
}