:root {
  --bg: #050912;
  --bg-soft: #08101e;
  --panel: #0d1728;
  --panel-2: #101c30;
  --text: #f6f9ff;
  --muted: #9eabc0;
  --line: rgba(255, 255, 255, .1);
  --blue: #1479ff;
  --cyan: #00c2ff;
  --gold: #dca72d;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden
}

body.modal-open {
  overflow: hidden
}

a {
  color: inherit;
  text-decoration: none
}

button,
input,
select,
textarea {
  font: inherit
}

button {
  cursor: pointer
}

img {
  display: block;
  max-width: 100%
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: auto
}

.section-pad {
  padding: 110px 0
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px
}

.skip-link:focus {
  top: 16px
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .3s;
  background: linear-gradient(180deg, rgba(5, 9, 18, .9), rgba(5, 9, 18, .25))
}

.site-header.scrolled {
  background: rgba(5, 9, 18, .86);
  backdrop-filter: blur(16px);
  border-color: var(--line)
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  letter-spacing: .02em
}

.brand-copy strong {
  font-size: 18px
}

.brand-copy small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: #7fc7ff;
  margin-top: 4px
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.nav>a {
  font-size: 14px;
  color: #c5cede;
  transition: .25s
}

.nav>a:hover {
  color: #fff
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  padding: 10px
}

.menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 9px;
  transition: .3s
}

.btn {
  border: 0;
  border-radius: 14px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 34px rgba(0, 135, 255, .28)
}

.btn-primary:hover {
  box-shadow: 0 18px 44px rgba(0, 135, 255, .4)
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: #fff
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08)
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 35%, rgba(0, 115, 255, .13), transparent 30%), linear-gradient(180deg, #050912 0%, #07101d 100%)
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 85%)
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .5
}

.hero-glow-one {
  width: 400px;
  height: 400px;
  right: -180px;
  top: 50px;
  background: rgba(0, 194, 255, .14)
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  left: -220px;
  bottom: -90px;
  background: rgba(20, 121, 255, .15)
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: #72caff
}

.eyebrow i {
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  display: block
}

.eyebrow.light {
  color: #dff5ff
}

.hero h1 {
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 22px 0 24px;
  max-width: 760px
}

.hero h1 span {
  background: linear-gradient(90deg, #66c8ff 0%, #0088ff 60%, #00d4ff 100%);
  -webkit-background-clip: text;
  color: transparent
}

.hero-copy>p {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin: 0
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 42px
}

.hero-proof {
  display: flex;
  gap: 34px;
  flex-wrap: wrap
}

.hero-proof div {
  display: grid;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.hero-proof strong {
  font-size: 21px
}

.hero-proof span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center
}

.orbit {
  position: absolute;
  border: 1px solid rgba(85, 181, 255, .2);
  border-radius: 50%;
  animation: spin 20s linear infinite
}

.orbit-one {
  width: 470px;
  height: 470px
}

.orbit-two {
  width: 350px;
  height: 350px;
  animation-direction: reverse;
  animation-duration: 16s
}

.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan)
}

.orbit:before {
  left: 17%;
  top: 7%
}

.orbit:after {
  right: 10%;
  bottom: 16%
}

.hero-logo-card {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(18, 31, 51, .95), rgba(6, 12, 23, .95));
  border: 1px solid rgba(126, 204, 255, .2);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .06);
  transform: rotate(-3deg)
}

.hero-logo-card:after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 45%);
  pointer-events: none
}

.hero-logo-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen
}

.hero-logo-card div {
  text-align: center;
  margin-top: 10px
}

.hero-logo-card strong {
  display: block;
  font-size: 20px
}

.hero-logo-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #70c8ff
}

.floating-product {
  position: absolute;
  width: 160px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(12, 22, 38, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite
}

.floating-product img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px
}

.floating-product span {
  display: block;
  font-size: 12px;
  color: #c8d1df;
  margin-top: 8px;
  text-align: center
}

.fp-one {
  top: 30px;
  right: 18px;
  animation-delay: -.8s
}

.fp-two {
  left: 0;
  bottom: 20px;
  animation-delay: -2.2s
}

.fp-three {
  right: 10px;
  bottom: 15px;
  animation-delay: -1.4s
}

.floating-product.light-card img {
  background: white;
  object-fit: contain
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-13px)
  }
}

.trusted-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .015)
}

.trusted-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: #8492a8;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em
}

.trusted-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #168eff;
  box-shadow: 0 0 14px #168eff
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 62px;
  text-align: center
}

.section-heading.compact {
  text-align: left;
  margin: 0
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 18px 0
}

.section-heading p {
  font-size: 17px;
  color: var(--muted);
  margin: 0
}

.section-heading.compact p {
  margin-bottom: 28px
}

.products {
  background: linear-gradient(180deg, #07101d, #050912)
}

.product-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(16, 28, 48, .8), rgba(7, 13, 24, .9));
  box-shadow: var(--shadow);
  margin-bottom: 34px;
  overflow: hidden;
  position: relative
}

.product-showcase:before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
  right: -50px;
  top: -50px;
  background: var(--blue)
}

.product-showcase.reverse {
  grid-template-columns: 1.1fr .9fr
}

.product-showcase.reverse .product-image-wrap {
  order: 2
}

.product-showcase.reverse .product-content {
  order: 1
}

.product-gold:before {
  background: var(--gold)
}

.product-image-wrap {
  position: relative;
  min-height: 410px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  overflow: hidden
}

.dark-art {
  background: #04070d
}

.light-art {
  background: #fff
}

.product-image-wrap:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 45%);
  pointer-events: none
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover
}

.light-art img {
  object-fit: contain
}

.product-number {
  position: absolute;
  right: 20px;
  bottom: 14px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, .1);
  z-index: 1
}

.light-art .product-number {
  color: rgba(0, 0, 0, .08)
}

.product-content {
  position: relative;
  z-index: 1
}

.product-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(30, 137, 255, .13);
  border: 1px solid rgba(48, 157, 255, .2);
  color: #70c7ff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em
}

.product-gold .product-tag {
  background: rgba(220, 167, 45, .12);
  border-color: rgba(220, 167, 45, .25);
  color: #efc560
}

.product-content h3 {
  font-size: 52px;
  line-height: 1;
  margin: 20px 0 16px;
  letter-spacing: -.04em
}

.product-content .lead {
  font-size: 18px;
  color: #c0cad9;
  margin: 0 0 26px
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  margin-bottom: 28px
}

.feature-grid div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #aab6c8;
  font-size: 14px
}

.feature-grid svg {
  width: 18px;
  min-width: 18px;
  fill: none;
  stroke: #3ca9ff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px
}

.product-gold .feature-grid svg {
  stroke: #e0af39
}

.text-link {
  border: 0;
  background: none;
  padding: 0;
  color: #70c8ff;
  font-weight: 800
}

.text-link span {
  display: inline-block;
  transition: .2s
}

.text-link:hover span {
  transform: translateX(4px)
}

.product-gold .text-link {
  color: #eac05a
}

.ecosystem {
  position: relative;
  background: radial-gradient(circle at 70% 45%, rgba(0, 140, 255, .12), transparent 26%)
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 70px
}

.ecosystem-map {
  position: relative;
  min-height: 540px
}

.map-node {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(145deg, rgba(17, 32, 54, .95), rgba(6, 12, 22, .95));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
  border-radius: 22px;
  padding: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2
}

.map-node strong {
  font-size: 18px
}

.map-node span {
  font-size: 12px;
  color: #8fa0b8
}

.map-center {
  width: 210px;
  height: 210px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%
}

.map-center img {
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen
}

.map-center strong {
  font-size: 20px
}

.node-a {
  width: 180px;
  height: 110px;
  left: 0;
  top: 35px
}

.node-b {
  width: 180px;
  height: 110px;
  right: 0;
  top: 45px
}

.node-c {
  width: 210px;
  height: 120px;
  right: 15%;
  bottom: 10px
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, #168eff, transparent);
  transform-origin: left center;
  z-index: 1
}

.line-a {
  width: 330px;
  left: 17%;
  top: 36%;
  transform: rotate(19deg)
}

.line-b {
  width: 380px;
  left: 34%;
  top: 55%;
  transform: rotate(-37deg)
}

.ecosystem-map:before,
.ecosystem-map:after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(71, 166, 255, .18);
  border-radius: 50%;
  inset: 60px 110px;
  animation: spin 30s linear infinite
}

.ecosystem-map:after {
  inset: 105px 155px;
  animation-direction: reverse
}

.why {
  background: #07101d
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.value-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
  transition: .3s
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(54, 165, 255, .35);
  background: rgba(255, 255, 255, .04)
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(20, 121, 255, .2), rgba(0, 194, 255, .08));
  margin-bottom: 24px
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #62c4ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.value-card h3 {
  font-size: 19px;
  margin: 0 0 10px
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.process {
  background: #050912
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step
}

.step {
  position: relative;
  padding: 32px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, .15)
}

.step:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 46px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.step>span {
  font-size: 12px;
  color: #61bfff;
  font-weight: 900;
  letter-spacing: .15em
}

.step h3 {
  font-size: 18px;
  margin: 18px 0 8px
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.contact {
  padding-top: 40px
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a63ec, #00aee8);
  box-shadow: 0 30px 80px rgba(0, 118, 255, .28)
}

.contact-card:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: -160px;
  top: -180px
}

.contact-card>div {
  position: relative
}

.contact-card h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 17px 0
}

.contact-card p {
  margin: 0;
  color: #def4ff;
  max-width: 680px
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.btn-white {
  background: white;
  color: #0569d8
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, .5)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12)
}

.site-footer {
  padding: 74px 0 22px;
  background: #02050a;
  border-top: 1px solid var(--line)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px
}

.footer-brand p {
  max-width: 350px;
  color: #7f8ba0;
  font-size: 14px;
  margin: 22px 0 0
}

.footer-grid h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #dae4f2;
  margin: 0 0 20px
}

.footer-grid>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px
}

.footer-grid a,
.footer-grid span {
  font-size: 14px;
  color: #7f8ba0
}

.footer-grid a:hover {
  color: white
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 20px;
  color: #657085;
  font-size: 12px
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 16px 45px rgba(37, 211, 102, .32);
  transition: .25s
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03)
}

.floating-whatsapp svg {
  width: 29px;
  fill: white
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none
}

.modal.open {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 4, 12, .78);
  backdrop-filter: blur(8px)
}

.modal-dialog {
  position: relative;
  width: min(680px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: #0b1424;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .6);
  animation: modalIn .25s ease
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 0;
  line-height: 1;
  cursor: pointer
}

.modal-close::before {
  content: "×";
  display: block;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px)
}

.modal-dialog {
  scrollbar-width: none;
  -ms-overflow-style: none
}

.modal-dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none
}

.modal-dialog h2 {
  font-size: 38px;
  line-height: 1;
  margin: 18px 0 12px
}

.modal-dialog>p {
  color: var(--muted);
  margin: 0 0 25px
}

.modal form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.modal label {
  display: grid;
  gap: 7px;
  color: #c9d3e2;
  font-size: 13px;
  font-weight: 700
}

.modal input,
.modal select,
.modal textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #07101d;
  color: #fff;
  padding: 13px 14px;
  outline: 0
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: #2299ff;
  box-shadow: 0 0 0 3px rgba(34, 153, 255, .12)
}

.modal textarea {
  resize: vertical
}

.modal .full {
  grid-column: 1/-1
}

.form-note {
  min-height: 20px;
  color: #ffb9b9;
  font-size: 13px
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.js .reveal.visible {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important
  }

  .js .reveal {
    opacity: 1;
    transform: none
  }
}

@media (max-width:1050px) {
  .hero-grid {
    gap: 35px
  }

  .hero-visual {
    transform: scale(.88)
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .ecosystem-grid {
    grid-template-columns: 1fr
  }

  .section-heading.compact {
    text-align: center;
    margin: auto
  }

  .ecosystem-map {
    max-width: 700px;
    width: 100%;
    margin: auto
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px
  }
}

@media (max-width:860px) {
  .section-pad {
    padding: 84px 0
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 2
  }

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 75px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 14, 26, .96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: none
  }

  .nav>a {
    padding: 11px 8px
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }

  .hero {
    min-height: auto;
    padding-top: 130px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-copy>p {
    margin: auto
  }

  .hero-actions,
  .hero-proof {
    justify-content: center
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(.93)
  }

  .product-showcase,
  .product-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .product-showcase.reverse .product-image-wrap,
  .product-showcase.reverse .product-content {
    order: initial
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 340px
  }

  .contact-card {
    grid-template-columns: 1fr
  }

  .contact-actions {
    flex-direction: row
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-brand {
    grid-column: 1/-1
  }
}

@media (max-width:620px) {
  .container {
    width: min(100% - 26px, var(--container))
  }

  .section-pad {
    padding: 70px 0
  }

  .nav-wrap {
    height: 72px
  }

  .brand img {
    width: 42px;
    height: 42px
  }

  .brand-copy strong {
    font-size: 16px
  }

  .hero {
    padding-top: 115px
  }

  .hero h1 {
    font-size: 43px
  }

  .hero-copy>p {
    font-size: 16px
  }

  .hero-proof {
    gap: 14px
  }

  .hero-proof div {
    min-width: 29%;
    padding-left: 10px
  }

  .hero-proof strong {
    font-size: 17px
  }

  .hero-proof span {
    font-size: 9px
  }

  .hero-visual {
    min-height: 430px;
    transform: scale(.78);
    margin: -15px -60px
  }

  .hero-logo-card {
    width: 270px;
    height: 270px
  }

  .floating-product {
    width: 145px
  }

  .fp-one {
    right: 0
  }

  .fp-two {
    left: 4px
  }

  .fp-three {
    right: 4px
  }

  .trusted-row {
    padding: 18px 0;
    gap: 13px 18px
  }

  .trusted-row i {
    display: none
  }

  .section-heading {
    margin-bottom: 40px
  }

  .section-heading h2 {
    font-size: 34px
  }

  .section-heading p {
    font-size: 15px
  }

  .product-showcase {
    padding: 16px;
    border-radius: 24px
  }

  .product-image-wrap {
    min-height: 280px;
    border-radius: 18px
  }

  .product-image-wrap img {
    min-height: 280px
  }

  .product-content {
    padding: 4px 5px 10px
  }

  .product-content h3 {
    font-size: 42px
  }

  .product-content .lead {
    font-size: 16px
  }

  .feature-grid {
    grid-template-columns: 1fr
  }

  .ecosystem-map {
    min-height: 500px;
    transform: scale(.84);
    margin: -35px -30px
  }

  .value-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr
  }

  .contact {
    padding-top: 20px
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 24px
  }

  .contact-actions {
    flex-direction: column
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column
  }

  .modal-dialog {
    padding: 28px 20px
  }

  .modal form {
    grid-template-columns: 1fr
  }

  .modal .full {
    grid-column: auto
  }

  .modal-dialog h2 {
    font-size: 31px
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 15px;
    bottom: 15px
  }

  .floating-whatsapp svg {
    width: 26px
  }
}

@media (max-width:420px) {
  .hero h1 {
    font-size: 38px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    transform: scale(.68);
    margin: -50px -100px -30px
  }

  .steps {
    grid-template-columns: 1fr
  }

  .ecosystem-map {
    transform: scale(.72);
    margin: -65px -75px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-brand {
    grid-column: auto
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 250px
  }
}


/* =========================================================
   MULTI-PAGE EXTENSIONS
   Home page styles above are unchanged.
   ========================================================= */
.nav>a.active {
  color: #fff;
  position: relative
}

.nav>a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.page-main {
  padding-top: 82px;
  background: var(--bg)
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 88px;
  background: radial-gradient(circle at 78% 28%, rgba(0, 142, 255, .18), transparent 30%), linear-gradient(180deg, #050912 0%, #081321 100%);
  border-bottom: 1px solid var(--line)
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%)
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center
}

.page-hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 21px 0 24px
}

.page-hero-copy h1 span {
  background: linear-gradient(90deg, #72d1ff, #167cff 58%, #00d1ff);
  -webkit-background-clip: text;
  color: transparent
}

.page-hero-copy>p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  margin: 0
}

.page-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px
}

.page-hero-art {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center
}

.page-hero-art:before,
.page-hero-art:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(81, 181, 255, .18)
}

.page-hero-art:before {
  width: 390px;
  height: 390px;
  animation: spin 22s linear infinite
}

.page-hero-art:after {
  width: 300px;
  height: 300px;
  animation: spin 16s linear infinite reverse
}

.page-logo-panel {
  position: relative;
  z-index: 2;
  width: min(400px, 88%);
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(17, 30, 51, .96), rgba(5, 10, 19, .98));
  border: 1px solid rgba(132, 207, 255, .2);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .48);
  transform: rotate(-2deg)
}

.page-logo-panel img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 22px
}

.page-logo-panel.light img {
  object-fit: contain;
  background: #fff
}

.page-logo-panel small {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: #85cef8;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  font-size: 11px
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: #8190a7;
  font-size: 12px;
  margin-bottom: 18px
}

.breadcrumbs a:hover {
  color: #fff
}

.breadcrumbs span {
  color: #3a92e7
}

.page-section {
  padding: 96px 0
}

.page-section.alt {
  background: #07101d
}

.page-section.soft {
  background: linear-gradient(180deg, #07101d, #050912)
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: start
}

.sticky-title {
  position: sticky;
  top: 120px
}

.sticky-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 18px 0
}

.sticky-title p {
  color: var(--muted);
  margin: 0
}

.content-stack {
  display: grid;
  gap: 18px
}

.info-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(17, 31, 52, .72), rgba(7, 13, 24, .88));
  overflow: hidden
}

.info-card:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -70px;
  top: -80px;
  background: var(--blue);
  opacity: .08;
  filter: blur(18px)
}

.info-card h3 {
  font-size: 21px;
  margin: 0 0 9px
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.info-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #63c4ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px
}

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.product-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 31, 52, .78), rgba(6, 12, 22, .94));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  transition: .3s
}

.product-page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(84, 184, 255, .35)
}

.product-page-image {
  height: 260px;
  background: #04070d;
  overflow: hidden
}

.product-page-image.light {
  background: #fff
}

.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-page-image.light img {
  object-fit: contain
}

.product-page-body {
  padding: 27px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.product-page-body .product-tag {
  align-self: flex-start
}

.product-page-body h2 {
  font-size: 34px;
  line-height: 1;
  margin: 20px 0 12px
}

.product-page-body p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px
}

.product-page-body .btn {
  margin-top: auto;
  width: 100%
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025)
}

.feature-card .icon-box {
  margin-bottom: 20px
}

.feature-card h3 {
  font-size: 19px;
  margin: 0 0 9px
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 18px;
  margin: 26px 0
}

.check-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #b4c0d1;
  font-size: 14px
}

.check-list li:before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(30, 147, 255, .14);
  color: #5fc4ff;
  font-weight: 900;
  font-size: 12px
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.showcase-image {
  position: relative;
  padding: 25px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17, 31, 52, .9), rgba(5, 10, 19, .96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.showcase-image img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1/1;
  object-fit: cover
}

.showcase-image.light img {
  object-fit: contain;
  background: #fff
}

.showcase-copy h2 {
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin: 18px 0
}

.showcase-copy p {
  color: var(--muted);
  font-size: 16px
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px
}

.mini-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025)
}

.mini-stat strong {
  display: block;
  font-size: 22px
}

.mini-stat span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.audience-card {
  padding: 25px 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025)
}

.audience-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(31, 145, 255, .13);
  color: #6ac8ff;
  font-weight: 900;
  margin-bottom: 18px
}

.audience-card h3 {
  font-size: 17px;
  margin: 0 0 8px
}

.audience-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.timeline article {
  position: relative;
  padding: 30px 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, .16)
}

.timeline article:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.timeline strong {
  font-size: 12px;
  letter-spacing: .15em;
  color: #63c2ff
}

.timeline h3 {
  font-size: 18px;
  margin: 18px 0 8px
}

.timeline p {
  font-size: 14px;
  color: var(--muted);
  margin: 0
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.about-stat {
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025)
}

.about-stat strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(90deg, #63c7ff, #1581ff);
  -webkit-background-clip: text;
  color: transparent
}

.about-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start
}

.contact-info {
  display: grid;
  gap: 16px
}

.contact-info-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .025)
}

.contact-info-card h3 {
  font-size: 17px;
  margin: 0 0 7px
}

.contact-info-card a,
.contact-info-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.contact-info-card a:hover {
  color: #fff
}

.contact-form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 31, 52, .78), rgba(6, 12, 22, .94));
  box-shadow: var(--shadow)
}

.contact-form-card h2 {
  font-size: 35px;
  line-height: 1.1;
  margin: 0 0 10px
}

.contact-form-card>p {
  color: var(--muted);
  margin: 0 0 26px
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #c9d3e2;
  font-size: 13px;
  font-weight: 700
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #07101d;
  color: #fff;
  padding: 13px 14px;
  outline: 0
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2299ff;
  box-shadow: 0 0 0 3px rgba(34, 153, 255, .12)
}

.contact-form textarea {
  resize: vertical
}

.contact-form .full {
  grid-column: 1/-1
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 12px
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
  overflow: hidden
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 52px 21px 22px;
  font-weight: 800;
  position: relative
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary:after {
  content: "+";
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 23px;
  color: #64c5ff
}

.faq-item[open] summary:after {
  content: "−"
}

.faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.privacy-wrap {
  max-width: 900px;
  margin: auto
}

.privacy-wrap section {
  padding: 25px 0;
  border-bottom: 1px solid var(--line)
}

.privacy-wrap h2 {
  font-size: 24px;
  margin: 0 0 9px
}

.privacy-wrap p,
.privacy-wrap li {
  color: var(--muted);
  font-size: 15px
}

.privacy-wrap ul {
  padding-left: 20px
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 45px;
  align-items: center;
  padding: 55px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a63ec, #00aee8);
  box-shadow: 0 30px 80px rgba(0, 118, 255, .28)
}

.cta-band:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: -150px;
  top: -175px
}

.cta-band>div {
  position: relative
}

.cta-band h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 12px
}

.cta-band p {
  margin: 0;
  color: #dff4ff
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

@media (max-width:1050px) {
  .page-hero-grid {
    gap: 35px
  }

  .page-hero-art {
    transform: scale(.9)
  }

  .product-page-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:860px) {
  .nav>a.active:after {
    display: none
  }

  .page-main {
    padding-top: 72px
  }

  .page-hero {
    padding: 80px 0 70px
  }

  .page-hero-grid,
  .intro-grid,
  .split-showcase,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .page-hero-grid {
    text-align: center
  }

  .page-hero-copy>p {
    margin: auto
  }

  .page-hero-actions {
    justify-content: center
  }

  .page-hero-art {
    min-height: 390px
  }

  .sticky-title {
    position: static;
    text-align: center
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .cta-band {
    grid-template-columns: 1fr
  }

  .cta-band-actions {
    flex-direction: row
  }
}

@media (max-width:620px) {
  .page-hero {
    padding: 66px 0 55px
  }

  .page-hero-copy h1 {
    font-size: 42px
  }

  .page-hero-copy>p {
    font-size: 16px
  }

  .page-hero-art {
    min-height: 330px;
    transform: scale(.82);
    margin: -20px -35px
  }

  .page-section {
    padding: 70px 0
  }

  .product-page-grid,
  .feature-cards,
  .audience-grid {
    grid-template-columns: 1fr
  }

  .product-page-image {
    height: 230px
  }

  .check-list {
    grid-template-columns: 1fr
  }

  .split-showcase {
    gap: 34px
  }

  .stat-row {
    grid-template-columns: 1fr
  }

  .timeline {
    grid-template-columns: 1fr 1fr
  }

  .contact-form {
    grid-template-columns: 1fr
  }

  .contact-form .full {
    grid-column: auto
  }

  .contact-form-card {
    padding: 25px 18px
  }

  .cta-band {
    padding: 35px 24px
  }

  .cta-band-actions {
    flex-direction: column
  }
}

@media (max-width:420px) {
  .page-hero-copy h1 {
    font-size: 37px
  }

  .page-hero-actions .btn {
    width: 100%
  }

  .page-hero-art {
    transform: scale(.72);
    margin: -45px -75px
  }

  .timeline {
    grid-template-columns: 1fr
  }

  .about-stats {
    grid-template-columns: 1fr 1fr
  }

  .cta-band .btn {
    width: 100%
  }
}

/* Custom App Development */
.product-purple:before {
  background: #8b5cf6
}

.product-purple .product-tag {
  background: rgba(139, 92, 246, .13);
  border-color: rgba(139, 92, 246, .28);
  color: #c4a8ff
}

.product-purple .feature-grid svg {
  stroke: #aa86ff
}

.product-purple .text-link {
  color: #bd9dff
}

.product-image-wrap.custom-art {
  background: radial-gradient(circle at 70% 25%, rgba(139, 92, 246, .22), transparent 36%), linear-gradient(145deg, #071429, #15103d)
}

.product-image-wrap.custom-art img {
  object-fit: contain;
  padding: 30px;
  background: transparent
}

.product-page-grid {
  grid-template-columns: repeat(4, 1fr)
}

.product-page-image.custom-app {
  background: radial-gradient(circle at 70% 20%, rgba(139, 92, 246, .22), transparent 42%), linear-gradient(145deg, #071429, #15103d)
}

.product-page-image.custom-app img {
  object-fit: contain;
  padding: 18px
}

.page-logo-panel.custom-app {
  background: radial-gradient(circle at 72% 20%, rgba(139, 92, 246, .22), transparent 40%), linear-gradient(145deg, #08162b, #17113f)
}

.page-logo-panel.custom-app img {
  object-fit: contain;
  background: transparent;
  padding: 14px
}

.showcase-image.custom-app {
  background: radial-gradient(circle at 72% 18%, rgba(139, 92, 246, .22), transparent 42%), linear-gradient(145deg, #071429, #15103d)
}

.showcase-image.custom-app img {
  object-fit: contain;
  background: transparent;
  padding: 10px
}

#custom-app-contact {
  background: linear-gradient(180deg, #050912, #07101d)
}

@media (max-width:1050px) {
  .product-page-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:620px) {
  .product-page-grid {
    grid-template-columns: 1fr
  }

  .product-image-wrap.custom-art img {
    padding: 18px
  }
}
/* =========================================================
   RESPONSIVE STABILITY PATCH — July 2026
   Keeps every section inside the viewport on desktop, tablet,
   mobile and small mobile without scaling or negative margins.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

#product-list {
  scroll-margin-top: 72px;
}

@media (min-width: 861px) and (max-width: 1100px) {
  .nav {
    gap: clamp(14px, 2vw, 22px);
  }

  .nav > a {
    font-size: 13px;
  }
}

main,
section,
header,
footer,
.container,
.hero-grid > *,
.page-hero-grid > *,
.product-showcase > *,
.split-showcase > *,
.contact-layout > * {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.nav,
.nav-wrap,
.hero-copy,
.page-hero-copy,
.product-content,
.product-page-body,
.showcase-copy {
  min-width: 0;
}

.hero h1,
.page-hero-copy h1,
.section-heading h2,
.product-content h3,
.product-page-body h2,
.showcase-copy h2,
.contact-card h2,
.cta-band h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .hero-grid,
  .page-hero-grid {
    gap: 42px;
  }

  .hero-visual,
  .page-hero-art {
    transform: none;
  }

  .product-showcase {
    gap: 38px;
    padding: 30px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    background: rgba(5, 9, 18, .94);
    backdrop-filter: blur(16px);
    border-color: var(--line);
  }

  .nav-wrap {
    height: 72px;
  }

  .nav {
    left: 16px;
    right: 16px;
    top: 82px;
    width: auto;
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
  }

  .nav > a,
  .nav > .btn {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 11px;
  }

  .nav > a:hover,
  .nav > a.active {
    background: rgba(255, 255, 255, .055);
  }

  .nav > .btn {
    justify-content: center;
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 74px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-actions {
    margin: 28px 0 34px;
  }

  .hero-proof {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 600px);
    height: 510px;
    min-height: 0;
    margin: 0 auto;
    transform: none;
    overflow: visible;
  }

  .orbit-one {
    width: min(82vw, 460px);
    height: min(82vw, 460px);
  }

  .orbit-two {
    width: min(62vw, 345px);
    height: min(62vw, 345px);
  }

  .product-showcase,
  .product-showcase.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 0;
  }

  .product-image-wrap {
    aspect-ratio: 16 / 10;
  }

  .product-image-wrap img {
    height: 100%;
  }

  .page-main {
    padding-top: 72px;
  }

  .page-hero {
    padding: 68px 0 72px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .page-hero-art {
    width: min(100%, 540px);
    min-height: 430px;
    margin: 0 auto;
    transform: none;
  }

  .page-logo-panel {
    width: min(400px, 84vw);
  }

  .split-showcase,
  .contact-layout,
  .intro-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-image {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --radius: 20px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section-pad,
  .page-section {
    padding: 64px 0;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 9px;
    letter-spacing: .27em;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .hero {
    padding: 104px 0 58px;
  }

  .hero-grid {
    gap: 34px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .13em;
  }

  .hero h1 {
    font-size: clamp(36px, 11.2vw, 48px);
    line-height: 1.07;
    margin: 18px 0 18px;
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions,
  .page-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 11px;
  }

  .hero-actions .btn,
  .page-hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .hero-proof div {
    min-width: 0;
    padding: 0 7px;
    border-left: 1px solid rgba(255, 255, 255, .16);
  }

  .hero-proof div:first-child {
    border-left: 0;
  }

  .hero-proof strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-proof span {
    font-size: 8px;
    line-height: 1.35;
    letter-spacing: .055em;
  }

  .hero-visual {
    width: 100%;
    height: 400px;
    min-height: 0;
    margin: 0;
    transform: none;
  }

  .hero-logo-card {
    width: min(64vw, 238px);
    height: min(64vw, 238px);
    border-radius: 28px;
    transform: rotate(-2deg);
  }

  .hero-logo-card img {
    width: min(36vw, 132px);
    height: min(36vw, 132px);
  }

  .hero-logo-card strong {
    font-size: 17px;
  }

  .hero-logo-card span {
    font-size: 8px;
    letter-spacing: .11em;
  }

  .orbit-one {
    width: min(91vw, 350px);
    height: min(91vw, 350px);
  }

  .orbit-two {
    width: min(69vw, 265px);
    height: min(69vw, 265px);
  }

  .floating-product {
    width: clamp(96px, 29vw, 116px);
    padding: 8px;
    border-radius: 14px;
  }

  .floating-product img {
    height: clamp(66px, 20vw, 82px);
    border-radius: 9px;
  }

  .floating-product span {
    font-size: 9px;
    line-height: 1.25;
    margin-top: 6px;
  }

  .fp-one {
    top: 5px;
    right: 0;
  }

  .fp-two {
    left: 0;
    bottom: 8px;
  }

  .fp-three {
    right: 0;
    bottom: 8px;
  }

  .trusted-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 22px;
    padding: 18px 0;
    scrollbar-width: none;
  }

  .trusted-row::-webkit-scrollbar {
    display: none;
  }

  .trusted-row span {
    flex: 0 0 auto;
  }

  .section-heading h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .product-showcase {
    padding: 14px;
    margin-bottom: 24px;
  }

  .product-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-image-wrap img {
    min-height: 0;
    height: 100%;
  }

  .product-content h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .ecosystem-map {
    width: 100%;
    min-height: 470px;
    margin: 0;
    transform: none;
  }

  .steps,
  .value-grid,
  .footer-grid,
  .product-page-grid,
  .feature-cards,
  .audience-grid,
  .timeline,
  .about-stats,
  .stat-row,
  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand,
  .contact-form .full,
  .modal .full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid > div:not(:first-child) {
    gap: 8px;
  }

  .page-hero {
    padding: 54px 0 60px;
  }

  .page-hero-copy h1 {
    font-size: clamp(35px, 10.5vw, 45px);
    line-height: 1.08;
    margin: 16px 0 18px;
  }

  .page-hero-copy > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .breadcrumbs {
    justify-content: center;
    line-height: 1.45;
  }

  .page-hero-art {
    width: 100%;
    min-height: 360px;
    margin: 0;
    transform: none;
  }

  .page-hero-art:before {
    width: min(88vw, 340px);
    height: min(88vw, 340px);
  }

  .page-hero-art:after {
    width: min(66vw, 255px);
    height: min(66vw, 255px);
  }

  .page-logo-panel {
    width: min(84vw, 320px);
    padding: 16px;
    border-radius: 24px;
    transform: rotate(-1deg);
  }

  .page-logo-panel img {
    border-radius: 15px;
  }

  .page-logo-panel small {
    font-size: 9px;
    letter-spacing: .11em;
  }

  .product-page-card,
  .feature-card,
  .info-card,
  .contact-info-card,
  .contact-form-card,
  .showcase-image,
  .cta-band {
    border-radius: 20px;
  }

  .product-page-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-page-body {
    padding: 22px 18px;
  }

  .product-page-body h2 {
    font-size: 30px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  .split-showcase {
    gap: 30px;
  }

  .showcase-image {
    padding: 14px;
  }

  .contact-form-card {
    padding: 24px 17px;
  }

  .contact-form-card h2 {
    font-size: 30px;
  }

  .cta-band {
    padding: 32px 20px;
  }

  .cta-band-actions {
    flex-direction: column;
  }

  .cta-band-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .modal-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
  }

  .floating-whatsapp {
    right: 13px;
    bottom: 13px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: .22em;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-visual {
    height: 370px;
  }

  .hero-logo-card {
    width: 220px;
    height: 220px;
  }

  .floating-product {
    width: 98px;
  }

  .floating-product img {
    height: 67px;
  }

  .page-hero-art {
    min-height: 330px;
  }

  .page-logo-panel {
    width: min(86vw, 300px);
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  .menu-btn span {
    transform-origin: center;
  }

  .menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================================================
   MOBILE ECOSYSTEM MAP FIX
   Removes absolute-position overlap and excessive empty space.
   ========================================================= */
@media (max-width: 620px) {
  .ecosystem-grid {
    gap: 34px;
  }

  .ecosystem .section-heading.compact {
    width: 100%;
    margin: 0 auto;
  }

  .ecosystem .section-heading.compact .btn {
    width: 100%;
    max-width: 360px;
  }

  .ecosystem-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "center center"
      "node-a node-b"
      "node-c node-c";
    align-items: stretch;
    gap: 14px;
    width: 100%;
    min-height: 0;
    padding: 0;
    margin: 0;
    transform: none;
    overflow: visible;
  }

  .ecosystem-map::before,
  .ecosystem-map::after,
  .ecosystem-map .map-line {
    display: none;
  }

  .ecosystem-map .map-node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    min-height: 108px;
    padding: 18px 12px;
    border-radius: 20px;
  }

  .ecosystem-map .map-center {
    grid-area: center;
    justify-self: center;
    width: 174px;
    height: 174px;
    min-height: 174px;
    padding: 22px;
    border-radius: 50%;
    margin-bottom: 8px;
  }

  .ecosystem-map .map-center img {
    width: 82px;
    height: 82px;
  }

  .ecosystem-map .map-center strong {
    margin-top: 4px;
    font-size: 19px;
  }

  .ecosystem-map .node-a {
    grid-area: node-a;
  }

  .ecosystem-map .node-b {
    grid-area: node-b;
  }

  .ecosystem-map .node-c {
    grid-area: node-c;
    width: min(100%, 280px);
    justify-self: center;
  }

  .ecosystem-map .map-node strong {
    font-size: 17px;
  }

  .ecosystem-map .map-node span {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  .ecosystem-map {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "center"
      "node-a"
      "node-b"
      "node-c";
  }

  .ecosystem-map .node-c {
    width: 100%;
  }
}

/* Final mobile layout for the connected-solutions section */
@media (max-width: 620px) {
  .ecosystem-map {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "center"
      "node-a"
      "node-b"
      "node-c";
    max-width: 390px;
    margin-inline: auto;
    gap: 12px;
  }

  .ecosystem-map .map-center {
    width: 100%;
    height: auto;
    min-height: 138px;
    margin: 0 0 6px;
    border-radius: 24px;
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    justify-items: start;
    text-align: left;
    padding: 22px 24px;
  }

  .ecosystem-map .map-center img {
    width: 74px;
    height: 74px;
  }

  .ecosystem-map .map-center strong {
    margin: 0;
    font-size: 21px;
  }

  .ecosystem-map .node-a,
  .ecosystem-map .node-b,
  .ecosystem-map .node-c {
    width: 100%;
    justify-self: stretch;
  }

  .ecosystem-map .map-node:not(.map-center) {
    min-height: 92px;
    padding: 18px 20px;
  }
}

/* =========================================================
   SITE-WIDE MOTION SYSTEM
   Smooth, lightweight motion with accessible fallbacks.
   ========================================================= */
.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #4cbcff, #7c5cff, #b78cff);
  box-shadow: 0 0 16px rgba(84, 184, 255, .75);
  will-change: transform;
}

.js .site-header {
  opacity: 0;
  transform: translateY(-18px);
}

.js .page-ready .site-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .75, .25, 1), background .3s ease, border-color .3s ease;
}

.js .hero-copy > *,
.js .page-hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.js .page-ready .hero-copy > *,
.js .page-ready .page-hero-copy > * {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1);
}

.js .page-ready .hero-copy > *:nth-child(2),
.js .page-ready .page-hero-copy > *:nth-child(2) { transition-delay: .08s; }
.js .page-ready .hero-copy > *:nth-child(3),
.js .page-ready .page-hero-copy > *:nth-child(3) { transition-delay: .16s; }
.js .page-ready .hero-copy > *:nth-child(4),
.js .page-ready .page-hero-copy > *:nth-child(4) { transition-delay: .24s; }
.js .page-ready .hero-copy > *:nth-child(5),
.js .page-ready .page-hero-copy > *:nth-child(5) { transition-delay: .32s; }

.hero-glow-one {
  animation: glowDriftOne 9s ease-in-out infinite alternate;
}

.hero-glow-two {
  animation: glowDriftTwo 11s ease-in-out infinite alternate;
}

.orbit-one {
  animation: orbitSpin 28s linear infinite;
}

.orbit-two {
  animation: orbitSpinReverse 22s linear infinite;
}

.hero-logo-card,
.page-logo-panel {
  animation: gentleFloat 5.5s ease-in-out infinite;
}

.floating-product {
  animation: productFloat 4.8s ease-in-out infinite;
}

.floating-product.fp-two { animation-delay: -.9s; }
.floating-product.fp-three { animation-delay: -1.8s; }

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .2) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(130%);
}

.brand img,
.product-image-wrap img,
.product-page-image img,
.showcase-image img,
.page-logo-panel img {
  transition: transform .5s cubic-bezier(.2, .75, .25, 1), filter .5s ease;
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.06);
}

.product-showcase:hover .product-image-wrap img,
.product-page-card:hover .product-page-image img,
.split-showcase:hover .showcase-image img {
  transform: scale(1.035);
}

.feature-card,
.audience-card,
.info-card,
.contact-info-card,
.product-page-card,
.product-showcase,
.timeline article,
.value-card,
.step-card {
  transition: transform .32s cubic-bezier(.2, .75, .25, 1), border-color .32s ease, box-shadow .32s ease;
}

.text-link span,
.footer-grid a {
  transition: transform .25s ease, color .25s ease;
}

.text-link:hover span {
  display: inline-block;
  transform: translateX(5px);
}

.modal.open .modal-backdrop {
  animation: backdropIn .25s ease both;
}

.nav.open > * {
  animation: menuItemIn .38s both;
}

.nav.open > *:nth-child(2) { animation-delay: .04s; }
.nav.open > *:nth-child(3) { animation-delay: .08s; }
.nav.open > *:nth-child(4) { animation-delay: .12s; }
.nav.open > *:nth-child(5) { animation-delay: .16s; }
.nav.open > *:nth-child(6) { animation-delay: .2s; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(29, 116, 255, .24);
  }

  .feature-card:hover,
  .audience-card:hover,
  .info-card:hover,
  .contact-info-card:hover,
  .timeline article:hover,
  .value-card:hover,
  .step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(84, 184, 255, .32);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
  }
}

@keyframes glowDriftOne {
  to { transform: translate3d(34px, 20px, 0) scale(1.08); }
}

@keyframes glowDriftTwo {
  to { transform: translate3d(-28px, -18px, 0) scale(.92); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes gentleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes productFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }

  .js .site-header,
  .js .page-ready .site-header,
  .js .hero-copy > *,
  .js .page-hero-copy > *,
  .js .page-ready .hero-copy > *,
  .js .page-ready .page-hero-copy > * {
    opacity: 1;
    transform: none;
  }

  .hero-glow-one,
  .hero-glow-two,
  .orbit-one,
  .orbit-two,
  .hero-logo-card,
  .page-logo-panel,
  .floating-product,
  .nav.open > * {
    animation: none !important;
    translate: none;
  }
}
