:root {
  --primary: #0047AB;
  --secondary: #0077D3;
  --accent: #2FA9E5;
  --highlight: #6EC2F1;
  --tint: #A8DEFA;
  --base: #FFFFFF;
  --ink: #081A38;
  --body-c: #4A5A78;
  --soft: #F1F8FE;
  --line: #DCEBF8;
  --navy: #02032C;
  --navy2: #071A45;
  --grad: linear-gradient(92deg, var(--secondary), var(--accent));
  --r: 22px;
  --shadow: 0 24px 60px rgba(0, 71, 171, .12);
  --font: 'HK Grotesk', 'Akzidenz-Grotesk', 'Helvetica Neue', Arial, system-ui, sans-serif
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: #4A5A78;
  background: var(--base);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font-family: inherit;
  border: 0;
  cursor: pointer;
  background: none
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.015em
}

.hl {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(47, 169, 229, .10);
  border: 1px solid rgba(47, 169, 229, .25);
  padding: 7px 16px;
  border-radius: 999px
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 169, 229, .18)
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap
}

.sec-head h2 {
  font-size: clamp(27px, 3.6vw, 42px);
  max-width: 660px;
  margin-top: 18px
}

.sec-head p {
  max-width: 540px;
  margin-top: 12px;
  font-size: 16.5px
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform .25s
}

.link-arrow:hover svg {
  transform: translateX(4px)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(0, 119, 211, .35);
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform .2s
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 16px 36px rgba(0, 119, 211, .45)
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn.ghost {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(0, 71, 171, .10);
  border: 1.5px solid var(--line)
}

.btn.ghost:hover {
  border-color: var(--accent);
  filter: none
}

.btn.white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(2, 3, 44, .35)
}

.btn.small {
  padding: 12px 22px;
  font-size: 14px
}

.topbar {
  background: linear-gradient(90deg, var(--navy2), var(--primary) 55%, var(--secondary));
  color: #fff;
  font-size: 13.5px
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

.topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 4px rgba(110, 194, 241, .25);
  flex: none;
  animation: pulse 2s infinite
}

.topbar a {
  font-weight: 700;
  letter-spacing: .08em;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  flex: none;
  text-transform: uppercase;
  font-size: 11.5px;
  background: rgba(255, 255, 255, .14);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background .2s
}

.topbar a:hover {
  background: rgba(255, 255, 255, .24)
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(110, 194, 241, .12)
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s
}

header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 71, 171, .10)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 71, 171, .25))
}

.brand .bt {
  line-height: 1.15
}

.brand .bt b {
  display: block;
  font-size: 19px;
  letter-spacing: .24em;
  color: var(--ink);
  font-weight: 800
}

.brand .bt span {
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--secondary);
  font-weight: 700
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  border-radius: 2px;
  background: var(--grad);
  transition: width .25s
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.burger span {
  width: 22px;
  height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  transition: .3s
}

.mnav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 22px 22px
}

.mnav a {
  display: block;
  padding: 13px 4px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--soft);
  font-size: 15px
}

.mnav .btn {
  margin-top: 16px;
  width: 100%
}

body.menu-open .mnav {
  display: block
}

body.menu-open .burger span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg)
}

body.menu-open .burger span:nth-child(2) {
  opacity: 0
}

body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg)
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  padding: 64px 0 60px
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 71, 171, .09) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 72% 38%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 72% 38%, #000, transparent 75%)
}

.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 222, 250, .6), transparent 65%)
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero h1 {
  font-size: clamp(36px, 4.9vw, 60px);
  font-weight: 800;
  margin: 22px 0 20px
}

.hero .sub {
  font-size: 17.5px;
  max-width: 520px;
  margin-bottom: 34px
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.hero-feats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hf {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px 9px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(0, 71, 171, .06)
}

.hf svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none
}

.hf small {
  font-weight: 500;
  color: #6B7CA0
}

.hero-media {
  position: relative
}

.media-glow {
  position: absolute;
  inset: 6% 4%;
  background: radial-gradient(closest-side, rgba(47, 169, 229, .30), rgba(168, 222, 250, .22) 55%, transparent 78%);
  filter: blur(8px)
}

.master {
  position: relative;
  width: min(100%, 540px);
  margin: 0 auto;
  -webkit-mask-image: radial-gradient(ellipse 74% 68% at 50% 47%, #000 56%, transparent 97%);
  mask-image: radial-gradient(ellipse 74% 68% at 50% 47%, #000 56%, transparent 97%)
}

.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 16px;
  padding: 11px 16px;
  box-shadow: 0 16px 40px rgba(2, 3, 44, .16);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  animation: float 5.5s ease-in-out infinite
}

.chip small {
  display: block;
  font-weight: 500;
  color: #6B7CA0;
  font-size: 11px
}

.chip .st {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
  flex: none
}

.chip .ic {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none
}

.chip .ic svg {
  width: 16px;
  height: 16px
}

.chip.c1 {
  top: 9%;
  left: -2%
}

.chip.c2 {
  top: 20%;
  right: -2%;
  animation-delay: 1.2s
}

.chip.c3 {
  bottom: 20%;
  left: -3%;
  animation-delay: .6s
}

.chip.c4 {
  bottom: 8%;
  right: 0;
  animation-delay: 1.8s
}

.ic.blue {
  background: rgba(0, 71, 171, .10);
  color: var(--primary)
}

.ic.sky {
  background: rgba(47, 169, 229, .14);
  color: var(--accent)
}

.eq {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 18px
}

.eq i {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1.1s ease-in-out infinite
}

.eq i:nth-child(2) {
  animation-delay: .15s;
  background: var(--secondary)
}

.eq i:nth-child(3) {
  animation-delay: .3s;
  background: var(--highlight)
}

.eq i:nth-child(4) {
  animation-delay: .45s;
  background: var(--primary)
}

@keyframes eq {

  0%,
  100% {
    height: 6px
  }

  50% {
    height: 18px
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.marquee {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden
}

.mq-track {
  display: flex;
  width: max-content;
  animation: mq 34s linear infinite
}

.marquee:hover .mq-track {
  animation-play-state: paused
}

.mq-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--secondary);
  text-transform: uppercase;
  white-space: nowrap
}

.mq-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad)
}

@keyframes mq {
  to {
    transform: translateX(-50%)
  }
}

.services {
  padding: 104px 0
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 26px;
  text-align: left;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden
}

.svc::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .25s
}

.svc:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: var(--highlight)
}

.svc:hover::after {
  opacity: 1
}

.svc .ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: .25s
}

.svc .ic svg {
  width: 25px;
  height: 25px
}

.svc:hover .ic {
  background: var(--grad);
  color: #fff;
  transform: scale(1.05)
}

.svc h3 {
  font-size: 17.5px
}

.svc p {
  font-size: 13.5px;
  flex: 1
}

.svc .more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px
}

.svc .more svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.svc:hover .more svg {
  transform: translateX(4px)
}

.why {
  background: linear-gradient(180deg, var(--soft), #fff);
  padding: 104px 0
}

.why .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start
}

.why-left {
  position: sticky;
  top: 110px
}

.why-left h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  margin: 18px 0 16px
}

.why-left p {
  margin-bottom: 30px;
  max-width: 440px
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.wc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s
}

.wc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow)
}

.wc .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 119, 211, .3)
}

.wc .ic svg {
  width: 21px;
  height: 21px
}

.wc h3 {
  font-size: 16px;
  margin-bottom: 6px
}

.wc p {
  font-size: 13px
}

.band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 55%, #0A2B66 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden
}

.band::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 169, 229, .28), transparent 65%)
}

.band .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative
}

.band .eyebrow {
  color: var(--highlight);
  background: rgba(110, 194, 241, .12);
  border-color: rgba(110, 194, 241, .3)
}

.band .eyebrow::before {
  background: var(--highlight)
}

.band h2 {
  color: #fff;
  font-size: clamp(29px, 3.6vw, 44px);
  margin: 18px 0 16px
}

.band p {
  color: #B9CBE8;
  max-width: 480px;
  margin-bottom: 32px
}

.band-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.bc {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(110, 194, 241, .25);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  backdrop-filter: blur(4px);
  transition: background .25s, transform .25s
}

.bc:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px)
}

.bc .ic {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  background: rgba(47, 169, 229, .2);
  color: var(--highlight);
  display: grid;
  place-items: center
}

.bc .ic svg {
  width: 18px;
  height: 18px
}

.bc b {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px
}

.bc span {
  font-size: 12.5px;
  color: #9FB4D8
}

.process {
  padding: 104px 0
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  position: relative
}

.steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 9%;
  right: 9%;
  border-top: 2px dashed var(--tint);
  z-index: 0
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px
}

.step .num {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--tint);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 17px;
  transition: .25s;
  box-shadow: 0 8px 22px rgba(0, 71, 171, .12)
}

.step:hover .num {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 119, 211, .35)
}

.step h3 {
  font-size: 16.5px;
  margin-bottom: 4px
}

.step .tag {
  display: block;
  color: var(--accent);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.step p {
  font-size: 13px
}

.products {
  background: var(--soft);
  padding: 104px 0
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.pc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden
}

.pc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad)
}

.pc:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.pc .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 119, 211, .3)
}

.pc .ic svg {
  width: 24px;
  height: 24px
}

.pc h3 {
  font-size: 18.5px
}

.pc .tag {
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: -8px
}

.pc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 4px 0 12px
}

.pc li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px
}

.pc li svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none
}

.pc .btn {
  margin-top: auto;
  align-self: flex-start
}

.soon {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: #4A5A78;
  background: #fff;
  border: 1.5px dashed var(--tint);
  border-radius: 16px;
  padding: 18px 24px
}

.soon b {
  color: var(--primary)
}

.faq {
  padding: 104px 0
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s
}

details[open] {
  box-shadow: var(--shadow);
  border-color: var(--highlight)
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 21px 26px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px
}

summary::-webkit-details-marker {
  display: none
}

summary .pl {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: .25s
}

summary .pl svg {
  width: 14px;
  height: 14px;
  transition: transform .25s
}

details[open] summary .pl {
  background: var(--grad);
  color: #fff
}

details[open] summary .pl svg {
  transform: rotate(45deg)
}

.faq-a {
  padding: 0 26px 24px;
  font-size: 14.5px;
  max-width: 720px
}

.cta-sec {
  padding: 0 0 104px
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 28px;
  padding: 68px 60px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 34px 80px rgba(0, 71, 171, .35)
}

.cta-card::before {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 65%)
}

.cta-card h2 {
  color: #fff;
  font-size: clamp(27px, 3.4vw, 42px);
  margin-bottom: 14px
}

.cta-card p {
  color: #DCEBFF;
  max-width: 480px
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative
}

.cta-right .or {
  font-size: 13.5px;
  color: #DCEBFF
}

.cta-right a.plain {
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 15px
}

.cta-right a.plain svg {
  width: 17px;
  height: 17px;
  color: var(--highlight)
}

.cta-right a.plain:hover {
  text-decoration: underline
}

footer {
  background: var(--navy);
  color: #9FB4D8;
  padding: 80px 0 0;
  font-size: 14px
}

.f-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 60px
}

.f-brand img {
  width: 190px;
  margin-bottom: 18px
}

.f-brand p {
  font-size: 13.5px;
  max-width: 280px
}

footer h4 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.f-col a,
.f-col button {
  display: block;
  color: #9FB4D8;
  padding: 6px 0;
  font-size: 13.5px;
  text-align: left;
  transition: color .2s
}

.f-col a:hover,
.f-col button:hover {
  color: var(--highlight)
}

.f-contact li {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start
}

.f-contact svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex: none;
  margin-top: 3px
}

.f-contact a:hover {
  color: var(--highlight)
}

.f-bottom {
  border-top: 1px solid rgba(159, 180, 216, .15);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px
}

.f-bottom a {
  color: var(--highlight)
}

.float-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 38px rgba(0, 119, 211, .5);
  transition: transform .2s
}

.float-chat:hover {
  transform: scale(1.08)
}

.float-chat svg {
  width: 27px;
  height: 27px
}

.float-chat::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ring 2.2s infinite
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px rgba(2, 3, 44, .12)
}

.mobile-bar .btn {
  width: 100%
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px
}

.modal.open {
  display: flex
}

.modal .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 44, .66);
  backdrop-filter: blur(6px);
  animation: fade .25s
}

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  max-width: 620px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  padding: 40px 38px;
  animation: pop .3s cubic-bezier(.2, .9, .3, 1.2);
  box-shadow: 0 40px 90px rgba(2, 3, 44, .5)
}

.modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad)
}

@keyframes pop {
  from {
    transform: translateY(26px) scale(.96);
    opacity: 0
  }
}

@keyframes fade {
  from {
    opacity: 0
  }
}

.m-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: .2s
}

.m-close:hover {
  background: var(--tint)
}

.m-close svg {
  width: 16px;
  height: 16px
}

.m-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px
}

.m-head img {
  width: 52px;
  height: 52px;
  object-fit: contain
}

.m-head h3 {
  font-size: 23px
}

.m-head span {
  font-size: 11px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase
}

.m-sub {
  font-size: 13.5px;
  margin-bottom: 24px
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.f-group {
  margin-bottom: 14px
}

.f-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .02em
}

.f-group label i {
  color: var(--accent);
  font-style: normal
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: #FBFDFF;
  transition: border-color .2s, box-shadow .2s;
  appearance: none
}

.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230077D3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center
}

.f-group textarea {
  resize: vertical;
  min-height: 74px
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 169, 229, .15);
  background: #fff
}

.f-err {
  border-color: #E5484D !important;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, .12) !important
}

.m-note {
  font-size: 12px;
  color: #6B7CA0;
  margin-top: 12px;
  text-align: center
}

.m-success {
  display: none;
  text-align: center;
  padding: 14px 4px 6px
}

.m-success .ok {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0, 119, 211, .4)
}

.m-success .ok svg {
  width: 34px;
  height: 34px
}

.m-success h3 {
  font-size: 25px;
  margin-bottom: 10px
}

.m-success p {
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto 24px
}

.m-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

html.js .rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease
}

html.js .rv.in {
  opacity: 1;
  transform: none
}

@media print {
  html.js .rv {
    opacity: 1 !important;
    transform: none !important
  }
}

@media (max-width:1020px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 56px
  }

  .hero-media {
    max-width: 560px;
    margin: 0 auto;
    width: 100%
  }

  .why .wrap {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .why-left {
    position: static
  }

  .band .wrap {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 18px
  }

  .steps::before {
    display: none
  }

  .prod-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 52px 36px
  }

  .f-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none
  }

  .nav-cta .btn {
    display: none
  }

  .burger {
    display: flex
  }
}

@media (max-width:720px) {
  .mobile-bar {
    display: block
  }

  .float-chat {
    bottom: 88px
  }

  body {
    padding-bottom: 78px
  }

  .topbar p span.hide-s {
    display: none
  }

  .hero {
    padding: 44px 0 56px
  }

  .chip.c1 {
    left: 0
  }

  .chip.c2 {
    right: 0
  }

  .chip.c3 {
    left: 0
  }

  .chip.c4 {
    right: 0
  }

  .services,
  .why,
  .process,
  .products,
  .faq {
    padding: 72px 0
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left
  }

  .step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 4px 16px;
    text-align: left
  }

  .step .num {
    margin: 0;
    grid-row: span 3
  }

  .prod-grid {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .band {
    padding: 72px 0
  }

  .band-chips {
    grid-template-columns: 1fr
  }

  .band-wm {
    width: 340px
  }

  .f-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .modal-card {
    padding: 32px 22px
  }

  .f-row {
    grid-template-columns: 1fr
  }

  .cta-card {
    padding: 44px 26px
  }
}

@media (max-width:560px) {
  .svc-grid {
    grid-template-columns: 1fr
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  html {
    scroll-behavior: auto
  }

  html.js .rv {
    opacity: 1 !important;
    transform: none !important
  }
}