:root {
  --navy: #071b4a;
  --blue: #1167e8;
  --orange: #ff7114;
  --pink: #ec2b68;
  --text: #102451;
  --muted: #667594;
  --bg: #f4f9ff;
  --white: #fff;
  --shadow: 0 15px 40px rgba(18, 45, 91, .10);
  --radius: 18px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55
}

.wrap {
  width: min(1320px, 92%);
  margin: auto
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10
}

.nav {
  margin-top: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  min-height: 70px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08)
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
  margin-right: auto
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 900;
  color: var(--orange);
  font-family: Poppins;
  background: linear-gradient(145deg, #fff, #eef4ff)
}

.brand b {
  display: block;
  font-family: Poppins;
  font-size: 16px;
  line-height: 1
}

.brand small {
  display: block;
  font-size: 10px;
  color: #65708a;
  margin-top: 3px
}

nav {
  display: flex;
  gap: 22px
}

nav a {
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  position: relative
}

nav a.active:after,
nav a:hover:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--orange)
}

.nav-actions {
  display: flex;
  gap: 8px
}

.pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: .2s
}

.pill {
  border-radius: 25px;
  padding: 9px 18px;
  color: #fff;
  font-size: 12px
}

.pill.green {
  background: #0abb64
}

.pill.blue {
  background: #1476ec
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 24px
}

.hero {
  min-height: 500px;
  padding: 115px 0 30px;
  background: radial-gradient(circle at 73% 48%, #ff6412 0 12%, transparent 31%), linear-gradient(110deg, #06194a 0%, #0c285f 47%, #173a82 100%);
  overflow: hidden;
  position: relative;
  color: #fff
}

.hero:after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -50%;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, transparent 45%, rgba(255, 116, 18, .75) 46%, rgba(255, 116, 18, .2) 60%, transparent 61%);
  transform: rotate(-4deg)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-copy {
  padding: 20px 0
}

.eyebrow,
.tag {
  display: inline-flex;
  padding: 5px 13px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .15);
  font-size: 12px;
  font-weight: 700
}

.eyebrow i {
  width: 8px;
  height: 8px;
  background: #ff8a22;
  border-radius: 50%;
  margin-right: 7px
}

.hero h1 {
  font-family: Poppins;
  font-size: 48px;
  line-height: 1.06;
  margin: 17px 0 12px;
  letter-spacing: -1.5px
}

.hero h1 em {
  font-style: normal;
  color: #ff7815
}

.lead {
  max-width: 610px;
  color: #eef4ff;
  font-size: 15px
}

.hero-services {
  display: flex;
  gap: 22px;
  margin: 24px 0
}

.hero-services span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px
}

.hero-services span:first-letter {
  font-size: 20px
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  padding: 12px 22px;
  border-radius: 28px;
  font-size: 13px
}

.btn.orange {
  background: var(--orange);
  color: #fff
}

.btn.white {
  background: #fff;
  color: var(--text)
}

.btn.blue {
  background: #1476ec;
  color: #fff
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff
}

.btn:hover,
.pill:hover {
  transform: translateY(-2px)
}

.hero-person {
  height: 330px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.person-cut {
  height: 330px;
  width: 330px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.person-cut img {
  height: 345px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .18))
}

.expert-badge {
  position: absolute;
  left: 3%;
  top: 42%;
  background: #fff;
  color: var(--text);
  padding: 13px 20px;
  border-radius: 35px;
  z-index: 3;
  box-shadow: var(--shadow)
}

.expert-badge:first-letter {
  background: #1476ec
}

.stats {
  position: absolute;
  right: 0;
  top: 4%;
  width: 160px;
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 13px 14px;
  z-index: 3;
  box-shadow: var(--shadow)
}

.stats div {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #edf0f6;
  padding: 9px 0
}

.stats div:last-child {
  border: 0
}

.stats strong {
  font-size: 18px
}

.stats small {
  font-size: 9px;
  color: var(--muted)
}

.techbar {
  background: #fff;
  border-bottom: 1px solid #e4eaf3
}

.tech {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.versions,
.tools {
  display: flex;
  align-items: center;
  gap: 14px
}

.versions b {
  font-size: 11px;
  line-height: 1.2
}

.versions span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f7fb;
  box-shadow: inset 0 0 0 5px #eef1f5;
  font-weight: 700;
  font-size: 13px
}

.stack {
  padding: 0 55px;
  border-left: 1px solid #e3e8f0;
  border-right: 1px solid #e3e8f0;
  display: flex;
  flex-direction: column
}

.stack b {
  font-size: 22px
}

.stack small {
  font-size: 10px;
  color: #78839a
}

.tools span {
  font-size: 11px;
  font-weight: 700;
  color: #58657f
}

.section {
  padding: 68px 0
}

.section-head {
  text-align: center;
  margin-bottom: 28px
}

.tag {
  background: linear-gradient(90deg, #7584e8, #6e57d8);
  color: #fff;
  font-size: 11px;
  padding: 4px 15px
}

.section-head h2,
.about h2,
.migration h2 {
  font-family: Poppins;
  font-size: 29px;
  margin: 7px 0 0;
  line-height: 1.2
}

.section-head p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 13px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px
}

.card {
  background: #fff;
  border: 1px solid #e7edf6;
  border-radius: 15px;
  box-shadow: 0 9px 28px rgba(31, 62, 109, .07)
}

.service {
  padding: 18px 15px;
  min-height: 190px
}

.service-icon {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1575f2, #4e4be8);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px
}

.service:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #6336dc, #8a49ed)
}

.service:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #ff6d10, #ff4a0b)
}

.service:nth-child(4) .service-icon {
  background: linear-gradient(135deg, #10bf71, #12a95c)
}

.service:nth-child(5) .service-icon {
  background: linear-gradient(135deg, #ee2470, #c91c7e)
}

.service:nth-child(6) .service-icon {
  background: linear-gradient(135deg, #5a2fe2, #772fe5)
}

.service h3 {
  font-size: 15px;
  line-height: 1.25;
  margin: 0 0 7px
}

.service p {
  font-size: 11px;
  color: #66728a;
  margin: 0 0 7px
}

.service a {
  font-size: 11px;
  font-weight: 800;
  color: #0c4db5;
  text-decoration: none
}

.about {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 55px;
  align-items: center
}

.about-card {
  background: #07317d;
  border-radius: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 22px;
  min-height: 170px;
  overflow: hidden
}

.about-image {
  width: 180px;
  height: 190px;
  overflow: hidden;
  align-self: flex-end
}

.about-image img {
  height: 215px;
  display: block;
  margin: auto
}

.about-card strong {
  font-family: Poppins;
  font-size: 17px
}

.about-card small {
  display: block;
  font-size: 10px;
  margin: 15px 0 6px
}

.about-card a {
  display: inline-block;
  background: #12bd6a;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 15px;
  margin-right: 4px
}

.about-card a:last-child {
  background: #1675e7
}

.about h2 em {
  font-style: normal;
  color: var(--orange)
}

.about h4 {
  margin: 3px 0;
  color: #53627c
}

.about p {
  font-size: 13px;
  color: #5e6c84
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 11px;
  font-weight: 700
}

.checks span:first-letter {
  color: #ff6d10
}

.migration {
  background: #f4f9ff
}

.migration-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  align-items: center;
  box-shadow: var(--shadow)
}

.migration p {
  max-width: 620px;
  color: var(--muted);
  font-size: 13px
}

.flow {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 16px 0;
  font-weight: 800
}

.flow span {
  background: #f1f4fa;
  padding: 7px 11px;
  border-radius: 20px;
  font-size: 12px
}

.flow span:last-child {
  background: #ff6d10;
  color: #fff
}

.migration-art {
  text-align: center;
  font-size: 48px
}

.migration-art div {
  font-size: 16px;
  font-weight: 900;
  color: #e73c73
}

.portfolio {
  background: #fff
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.portfolio-grid article {
  padding: 25px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e2eaf5;
  min-height: 180px
}

.portfolio-grid article span {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #5874df;
  border-radius: 15px;
  padding: 5px 10px
}

.portfolio-grid h3 {
  font-size: 18px;
  margin: 15px 0 8px
}

.portfolio-grid p {
  font-size: 12px;
  color: var(--muted)
}

.process {
  background: #f5f9ff
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.steps>div {
  position: relative;
  text-align: center
}

.steps i {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #1476ec;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  margin: auto
}

.steps>div:last-child i {
  background: #14ba69
}

.steps h3 {
  font-size: 15px;
  margin: 10px 0 2px
}

.steps p {
  font-size: 11px;
  color: var(--muted);
  margin: 0
}

.faq {
  background: #fff
}

.narrow {
  max-width: 900px
}

.faq details {
  border-bottom: 1px solid #e3e9f2;
  padding: 17px 5px
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: space-between
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary span {
  font-size: 20px;
  color: #176fe1
}

.faq details p {
  font-size: 12px;
  color: var(--muted);
  max-width: 760px;
  margin: 10px 0 0
}

.cta {
  padding: 50px 0;
  background: linear-gradient(110deg, #061a48, #123a7e);
  color: #fff;
  text-align: center
}

.cta h2 {
  font-family: Poppins;
  font-size: 25px;
  margin: 0 0 5px
}

.cta p {
  margin: 0 0 20px;
  color: #dbe5fb;
  font-size: 13px
}

footer {
  background: #061737;
  color: #cbd7ee;
  padding: 38px 0 15px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px
}

.footer-brand {
  color: #fff
}

.footer-grid p {
  font-size: 11px;
  max-width: 320px
}

.footer-grid h4 {
  color: #fff;
  margin: 0 0 12px
}

.footer-grid>div:not(:first-child) a {
  display: block;
  color: #aebbd4;
  text-decoration: none;
  font-size: 11px;
  margin: 7px 0
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 14px;
  margin-top: 25px;
  font-size: 10px;
  display: flex;
  justify-content: space-between
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px)
}

.orb1 {
  width: 320px;
  height: 320px;
  right: 29%;
  top: 90px;
  background: rgba(255, 126, 13, .38)
}

.orb2 {
  width: 110px;
  height: 110px;
  right: 23%;
  top: 70px;
  background: rgba(255, 126, 13, .2)
}

@media(max-width:1100px) {
  nav {
    gap: 12px
  }
  .nav-actions {
    display: none
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .hero-grid {
    grid-template-columns: 1fr .8fr
  }
  .stats {
    right: -10px
  }
  .tools {
    display: none
  }
  .stack {
    margin-left: auto
  }
  .versions {
    gap: 8px
  }
}

@media(max-width:800px) {
  .header {
    position: relative;
    background: #fff
  }
  .nav {
    border-radius: 0;
    margin: 0
  }
  .menu {
    display: block
  }
  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 4%;
    right: 4%;
    background: #fff;
    padding: 15px;
    box-shadow: var(--shadow);
    border-radius: 15px;
    flex-direction: column
  }
  nav.open {
    display: flex
  }
  .nav-actions {
    display: none
  }
  .hero {
    padding-top: 35px
  }
  .hero-grid {
    grid-template-columns: 1fr
  }
  .hero h1 {
    font-size: 38px
  }
  .hero-person {
    margin-top: 20px
  }
  .tech {
    flex-wrap: wrap;
    padding: 12px 0
  }
  .versions {
    width: 100%;
    justify-content: center
  }
  .stack {
    display: none
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .about-grid,
  .migration-box {
    grid-template-columns: 1fr
  }
  .portfolio-grid {
    grid-template-columns: 1fr
  }
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .hero-person {
    height: 330px
  }
  .stats {
    right: 0
  }
  .expert-badge {
    left: 0
  }
}

@media(max-width:520px) {
  .service-grid {
    grid-template-columns: 1fr
  }
  .hero-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
  }
  .hero h1 {
    font-size: 34px
  }
  .stats {
    width: 135px
  }
  .person-cut {
    width: 290px
  }
  .about-card {
    padding: 12px
  }
  .about-image {
    width: 145px
  }
  .checks {
    grid-template-columns: 1fr
  }
  .steps {
    grid-template-columns: 1fr
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .copyright {
    display: block
  }
  .copyright span {
    display: block;
    margin-top: 7px
  }
}