:root {
  --navy: #05113a;
  --cyan: #009fe3;
  --ink: #071331;
  --muted: #61708b;
  --pale: #f3f8fc;
  --line: #dce7ef;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  overflow: hidden;
}
.header {
  height: 88px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 88px);
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand {
  width: 176px;
  height: 55px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.brand img {
  width: 145px;
  height: auto;
  transform: scale(1.55);
  transform-origin: left center;
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #ccd6e7;
}
.header nav a:hover {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--cyan);
  color: #fff;
  padding: 17px 25px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 32px rgba(0, 159, 227, 0.2);
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  background: #0bb0f4;
}
.btn-small {
  padding: 13px 19px;
  font-size: 13px;
}
.hero {
  min-height: 700px;
  background: var(--navy);
  color: #fff;
  padding: 80px clamp(24px, 7vw, 112px) 84px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: #9fdfff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  display: block;
  width: 27px;
  height: 2px;
  background: var(--cyan);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  max-width: 730px;
  margin: 23px 0 26px;
}
.hero h1 em,
.section h2 em,
.cta h2 em {
  font-style: normal;
  color: var(--cyan);
}
.hero-text {
  max-width: 590px;
  color: #b8c5db;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 36px 0 48px;
}
.text-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 6px;
}
.text-link span {
  margin-left: 8px;
  color: var(--cyan);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #92a2bc;
  font-size: 11px;
}
.hero-proof p {
  margin: 0;
  line-height: 1.6;
}
.hero-proof strong {
  color: #fff;
  font-size: 12px;
}
.avatars {
  display: flex;
}
.avatars i {
  width: 32px;
  height: 32px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
  margin-left: -7px;
}
.avatars i:first-child {
  margin-left: 0;
  background: var(--cyan);
  color: #fff;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-glow-a {
  width: 600px;
  height: 600px;
  right: -290px;
  top: -180px;
  background: radial-gradient(circle, rgba(0, 159, 227, 0.18), transparent 68%);
}
.hero-glow-b {
  width: 400px;
  height: 400px;
  left: 35%;
  bottom: -300px;
  background: radial-gradient(circle, rgba(24, 83, 185, 0.25), transparent 70%);
}
.hero-visual {
  height: 510px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(79, 172, 226, 0.14);
  border-radius: 50%;
}
.orbit-one {
  width: 500px;
  height: 500px;
}
.orbit-two {
  width: 395px;
  height: 395px;
}
.dashboard {
  width: min(530px, 95%);
  height: 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  transform: perspective(1100px) rotateY(-8deg) rotateX(2deg);
  overflow: hidden;
}
.dash-bar {
  height: 36px;
  background: #eaf0f5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
}
.red {
  background: #ff6c6c;
}
.yellow {
  background: #ffbf4c;
}
.green {
  background: #51cc8a;
}
.dash-bar small {
  color: #8590a2;
  background: #fff;
  border-radius: 4px;
  margin-left: 50px;
  padding: 4px 55px;
}
.dash-content {
  display: flex;
  height: 314px;
}
.dash-content aside {
  width: 62px;
  background: #071640;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
}
.dash-content aside b {
  color: var(--cyan);
  font-size: 19px;
}
.dash-content aside span {
  width: 20px;
  height: 5px;
  border-radius: 4px;
  background: #405074;
}
.dash-content aside .active {
  background: var(--cyan);
  height: 20px;
}
.dash-main {
  color: var(--ink);
  padding: 26px 30px;
  flex: 1;
}
.dash-main > p {
  color: #7f8ba0;
  font-size: 10px;
  margin: 0;
}
.dash-main h3 {
  font-size: 20px;
  margin: 6px 0 25px;
}
.metric {
  border: 1px solid #e1e9f0;
  border-radius: 10px;
  padding: 17px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  color: #8490a4;
  font-size: 11px;
}
.metric strong {
  font-size: 24px;
  color: #08183f;
}
.metric i {
  color: #0cae76;
  margin-left: 9px;
}
.chart {
  height: 105px;
  margin-top: 20px;
  border-radius: 8px;
  background: repeating-linear-gradient(
    to bottom,
    #eef3f7 0,
    #eef3f7 1px,
    transparent 1px,
    transparent 26px
  );
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 15px 20px;
}
.chart b {
  width: 24px;
  background: linear-gradient(#00b5f4, #2371dd);
  border-radius: 4px 4px 0 0;
}
.chart b:nth-child(1) {
  height: 30%;
}
.chart b:nth-child(2) {
  height: 43%;
}
.chart b:nth-child(3) {
  height: 37%;
}
.chart b:nth-child(4) {
  height: 68%;
}
.chart b:nth-child(5) {
  height: 58%;
}
.chart b:nth-child(6) {
  height: 82%;
}
.chart b:nth-child(7) {
  height: 92%;
}
.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  padding: 14px 17px;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  gap: 11px;
}
.float-card > span {
  width: 36px;
  height: 36px;
  background: #e8f8ff;
  color: var(--cyan);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.float-card strong,
.float-card small {
  display: block;
}
.float-card strong {
  font-size: 12px;
}
.float-card small {
  font-size: 9px;
  color: #8290a5;
  margin-top: 4px;
}
.card-code {
  left: -10px;
  top: 74px;
}
.card-online {
  right: -6px;
  bottom: 55px;
}
.card-online i {
  color: #1ac98c;
  font-size: 20px;
}
.trust {
  background: #f4f8fb;
  padding: 30px clamp(24px, 7vw, 112px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8794a7;
  border-bottom: 1px solid var(--line);
}
.trust p {
  font-size: 9px;
  letter-spacing: 0.18em;
  margin: 0;
  font-weight: 700;
}
.trust div {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #30415c;
  font-weight: 700;
  font-size: 13px;
}
.trust i {
  color: var(--cyan);
  font-style: normal;
}
.section {
  padding: 110px clamp(24px, 7vw, 112px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 56px;
}
.eyebrow.dark {
  color: #377093;
}
.section h2,
.why h2,
.process h2,
.cta h2 {
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
}
.section-head > p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-grid article {
  padding: 35px 28px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: 0.25s;
}
.service-grid article:last-child {
  border: 0;
}
.service-grid article:hover {
  background: var(--pale);
  transform: translateY(-4px);
}
.service-grid article > span {
  position: absolute;
  right: 23px;
  top: 25px;
  font-size: 10px;
  color: #a0adbd;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: #e9f8ff;
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}
.service-grid h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
.service-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  min-height: 90px;
}
.service-grid a {
  font-size: 12px;
  font-weight: 700;
}
.service-grid a b {
  color: var(--cyan);
  margin-left: 8px;
}
.why {
  background: var(--navy);
  color: #fff;
  padding: 105px clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.why-copy > p:not(.eyebrow) {
  color: #aab9cf;
  line-height: 1.8;
  font-size: 15px;
  max-width: 580px;
  margin: 26px 0 35px;
}
.why ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why li {
  display: flex;
  gap: 12px;
}
.why li > b {
  width: 25px;
  height: 25px;
  background: rgba(0, 159, 227, 0.15);
  color: var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.why li span,
.why li strong,
.why li small {
  display: block;
}
.why li strong {
  font-size: 13px;
}
.why li small {
  color: #8495b0;
  margin-top: 6px;
}
.why-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.why-numbers div {
  background: #081641;
  padding: 40px 36px;
  min-height: 160px;
}
.why-numbers strong {
  display: block;
  color: #fff;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.why-numbers span {
  color: #91a3bd;
  font-size: 12px;
  line-height: 1.6;
}
.why-numbers .accent {
  background: var(--cyan);
}
.why-numbers .accent span {
  color: #e8f9ff;
}
.portfolio {
  background: #f7fafc;
}
.dark-link {
  color: var(--ink);
  border-color: #aeb9c6;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-grid article {
  padding: 22px 22px 26px;
  background: #fff;
  position: relative;
}
.project-preview {
  height: 255px;
  border-radius: 8px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}
.project-one .project-preview {
  background: #dff4ff;
}
.project-two .project-preview {
  background: #091842;
}
.project-three .project-preview {
  background: #e7ebf7;
}
.mini-logo {
  font-weight: 900;
  color: var(--cyan);
}
.preview-lines {
  position: absolute;
  top: 65px;
  left: 26px;
}
.preview-lines b {
  display: block;
  width: 90px;
  height: 6px;
  background: rgba(5, 17, 58, 0.2);
  margin: 7px 0;
  border-radius: 5px;
}
.preview-lines b:nth-child(2) {
  width: 125px;
  height: 14px;
  background: var(--navy);
}
.project-two .preview-lines b:nth-child(2) {
  background: #fff;
}
.preview-window {
  position: absolute;
  width: 58%;
  height: 63%;
  right: -4%;
  bottom: -5%;
  border-radius: 10px 0 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(5, 17, 58, 0.18);
  padding: 24px;
}
.preview-window i {
  display: block;
  height: 10px;
  background: #dce8f0;
  margin-bottom: 12px;
  border-radius: 4px;
}
.preview-window i:last-child {
  height: 50px;
  background: linear-gradient(135deg, #e7f8ff, #acdff5);
}
.project-grid article > p {
  font-size: 9px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 23px 0 9px;
}
.project-grid h3 {
  font-size: 17px;
  max-width: 270px;
  line-height: 1.4;
}
.project-grid a {
  font-size: 11px;
  font-weight: 700;
}
.project-grid a span {
  color: var(--cyan);
}
.project-grid article > small {
  position: absolute;
  right: 22px;
  bottom: 28px;
  color: #b5bfca;
}
.process {
  padding: 100px clamp(24px, 7vw, 112px);
  text-align: center;
}
.process > .eyebrow {
  justify-content: center;
  color: #377093;
}
.process h2 {
  max-width: 680px;
  margin: 18px auto 55px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
  position: relative;
}
.steps:before {
  content: "";
  height: 1px;
  background: var(--line);
  position: absolute;
  left: 4%;
  right: 4%;
  top: 21px;
}
.steps article {
  padding: 0 25px;
  position: relative;
}
.steps b {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 11px;
  position: relative;
  z-index: 1;
}
.steps h3 {
  font-size: 16px;
  margin: 25px 0 12px;
}
.steps p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.cta {
  margin: 0 clamp(24px, 4vw, 65px);
  padding: 78px clamp(30px, 5vw, 75px);
  background: linear-gradient(120deg, #008fd4, #00b0ec);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  gap: 70px;
  align-items: center;
  border-radius: 18px;
}
.cta .eyebrow {
  color: #d8f5ff;
}
.cta .eyebrow span {
  background: #fff;
}
.cta h2 {
  margin-top: 18px;
}
.cta h2 em {
  color: #06215b;
}
.cta > div:last-child p {
  font-size: 14px;
  line-height: 1.7;
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
  margin-top: 15px;
}
.btn-white:hover {
  background: #effaff;
}
.cta + footer {
  margin-top: 70px;
}
footer {
  background: var(--navy);
  color: #fff;
  padding: 60px clamp(24px, 7vw, 112px) 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
footer img {
  width: 170px;
  height: 64px;
  object-fit: cover;
  object-position: left center;
}
footer p {
  color: #8fa0bb;
  font-size: 12px;
}
footer div {
  text-align: right;
}
footer div a {
  font-size: 12px;
  margin-left: 25px;
  color: #b5c1d3;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  color: #657692;
  font-size: 10px;
}
.cta + .site-footer {
  margin-top: 70px;
}
.site-footer {
  background: linear-gradient(135deg, #030b28 0%, var(--navy) 58%, #071d50 100%);
  color: #fff;
  padding: 82px clamp(24px, 7vw, 112px) 28px;
  position: relative;
  overflow: hidden;
  display: block;
}
.footer-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -300px;
  background: radial-gradient(circle, rgba(0, 159, 227, 0.2), transparent 68%);
  pointer-events: none;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.55fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.site-footer .footer-brand {
  text-align: left;
}
.site-footer .footer-brand > a:first-child {
  display: inline-flex;
  width: 178px;
  height: 62px;
  overflow: hidden;
  align-items: center;
}
.site-footer .footer-brand img {
  width: 150px;
  height: auto;
  object-fit: initial;
  transform: scale(1.55);
  transform-origin: left center;
}
.site-footer .footer-brand > p {
  color: #95a6c1;
  font-size: 13px;
  line-height: 1.75;
  max-width: 310px;
  margin: 18px 0 27px;
}
.site-footer .footer-social {
  width: min(290px, 100%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s;
  text-align: left;
}
.site-footer .footer-social:hover {
  border-color: rgba(0, 159, 227, 0.55);
  background: rgba(0, 159, 227, 0.08);
  transform: translateY(-2px);
}
.footer-social > span {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0, 159, 227, 0.14);
  color: #6dd1ff;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.footer-social div {
  flex: 1;
  text-align: left;
}
.footer-social small,
.footer-social strong {
  display: block;
}
.footer-social small {
  color: #7387a7;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 0;
  padding: 0;
}
.footer-social strong {
  font-size: 12px;
  margin-top: 4px;
}
.footer-social > b {
  color: var(--cyan);
  font-size: 14px;
}
.site-footer .footer-column {
  text-align: left;
}
.footer-column h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 9px 0 27px;
  position: relative;
}
.footer-column h3:after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cyan);
  margin-top: 12px;
}
.site-footer .footer-column > a {
  display: block;
  color: #8fa0ba;
  font-size: 12px;
  margin: 0 0 17px;
  transition: 0.2s;
}
.footer-column > a:hover {
  color: #fff;
  transform: translateX(3px);
}
.site-footer .footer-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: clamp(25px, 3vw, 48px);
  text-align: left;
}
.footer-contact > span {
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #69ccf8;
  font-weight: 700;
}
.footer-contact h3 {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 17px 0 28px;
  max-width: 330px;
}
.site-footer .footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 13px;
  margin: 0;
  max-width: 270px;
}
.footer-contact > a b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.footer-contact > a:hover b {
  transform: translate(2px, -2px);
  background: #20baff;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 65px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  text-align: left;
}
.site-footer .footer-bottom small {
  color: #617491;
  font-size: 9px;
  border: 0;
  padding: 0;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: right;
}
.site-footer .footer-bottom a {
  color: #71839f;
  font-size: 9px;
  margin: 0;
}
.footer-bottom a:hover {
  color: #fff;
}
.footer-bottom .back-top {
  color: #9fb0c8;
  display: flex;
  align-items: center;
  gap: 10px;
}
.back-top span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
}
@media (max-width: 980px) {
  .header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .hero-visual {
    height: 430px;
  }
  .trust {
    display: block;
  }
  .trust div {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .steps:before {
    display: none;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
  }
  .header .btn-small {
    display: none;
  }
  .site-footer .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .site-footer .footer-contact {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0 0;
  }
  .footer-contact h3 {
    max-width: 530px;
  }
}
@media (max-width: 640px) {
  .header {
    height: 72px;
    padding: 0 20px;
  }
  .brand {
    width: 200px;
  }
  .hero {
    padding: 56px 22px 65px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-visual {
    height: 350px;
  }
  .dashboard {
    height: 270px;
  }
  .dash-content {
    height: 234px;
  }
  .dash-main {
    padding: 20px;
  }
  .card-code {
    top: 20px;
  }
  .card-online {
    bottom: 5px;
  }
  .orbit-one {
    width: 360px;
    height: 360px;
  }
  .orbit-two {
    width: 280px;
    height: 280px;
  }
  .trust {
    padding: 25px 22px;
  }
  .trust div {
    gap: 15px;
  }
  .section,
  .process {
    padding: 75px 22px;
  }
  .section-head {
    display: block;
  }
  .section-head > p,
  .section-head > a {
    margin-top: 25px;
  }
  .service-grid,
  .project-grid,
  .why ul,
  .why-numbers,
  .steps {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-grid p {
    min-height: 0;
  }
  .why {
    padding: 75px 22px;
  }
  .project-preview {
    height: 220px;
  }
  .cta {
    margin: 0 15px;
    padding: 55px 25px;
  }
  .cta h2 {
    font-size: 38px;
  }
  .site-footer {
    padding: 62px 24px 25px;
  }
  .site-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
  }
  .site-footer .footer-brand {
    grid-column: 1/-1;
  }
  .site-footer .footer-contact {
    grid-column: 1/-1;
  }
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 16px 22px;
    text-align: left;
  }
}

/* Recursos exclusivos da versão para hospedagem */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.menu-toggle:focus-visible,
.header a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .header {
    position: relative;
  }
  .header nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    padding: 18px;
    background: #081641;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    gap: 0;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header nav a:last-child {
    border-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .service-grid article,
  .reveal {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
