*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-navy: #0d2a4f;
  --bg-navy-2: #081c38;
  --ink: #16334f;
  --body: #51657c;
  --muted: #74879c;
  --line: #e6ecf3;
  --line-strong: #d3dfec;
  --blue: #1b5ea8;
  --blue-bright: #2e9bda;
  --orange: #f58220;
  --orange-ink: #c96410;
  --red: #e6432e;
  --green: #1f9d5b;
  --grad-warm: linear-gradient(135deg, #f58220, #e6432e);
  --grad-blue: linear-gradient(135deg, #2e9bda, #1b5ea8);
  --grad-text: linear-gradient(to left, #f58220, #e6432e);
  --grad-mix: linear-gradient(120deg, #1b5ea8, #f58220);
  --shadow-sm: 0 2px 10px rgba(23, 56, 94, 0.06);
  --shadow-md: 0 14px 34px -12px rgba(23, 56, 94, 0.14);
  --shadow-lg: 0 30px 60px -20px rgba(23, 56, 94, 0.22);
  --radius: 18px;
  --nav-h: 78px;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(245, 130, 32, 0.25);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eef2f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--orange));
  border-radius: 8px;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
}

section {
  scroll-margin-top: calc(var(--nav-h) + 10px);
}

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.container-narrow {
  width: min(860px, 100% - 48px);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-box {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}

.pre-box img {
  width: 62px;
  animation: preBob 1.6s ease-in-out infinite;
}

.pre-ring {
  position: absolute;
  inset: 0;
  border-radius: 26%;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #2e9bda, #f58220) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transform: rotate(45deg);
  animation: preSpin 2.4s linear infinite;
}

@keyframes preSpin {
  to {
    transform: rotate(405deg);
  }
}

@keyframes preBob {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}

.progress {
  position: fixed;
  top: 0;
  right: 0;
  height: 3px;
  width: 0;
  background: var(--grad-mix);
  z-index: 150;
}

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(46, 155, 218, 0.09), transparent 65%),
    radial-gradient(700px 420px at 4% 30%, rgba(245, 130, 32, 0.06), transparent 60%),
    #ffffff;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 94, 168, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 94, 168, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.glow-a {
  width: 480px;
  height: 480px;
  top: -180px;
  left: -140px;
  background: rgba(46, 155, 218, 0.12);
}

.glow-b {
  width: 420px;
  height: 420px;
  top: 40%;
  right: -180px;
  background: rgba(245, 130, 32, 0.08);
}

.glow-c {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: 32%;
  background: rgba(27, 94, 168, 0.08);
}

.fd {
  position: absolute;
  border: 2px solid rgba(27, 94, 168, 0.1);
  border-radius: 22%;
  rotate: 45deg;
  pointer-events: none;
  animation: fdFloat 16s ease-in-out infinite;
}

.fd-1 {
  width: 90px;
  height: 90px;
  top: 18%;
  left: 7%;
}

.fd-2 {
  width: 54px;
  height: 54px;
  top: 64%;
  left: 15%;
  border-color: rgba(245, 130, 32, 0.13);
  animation-delay: -4s;
}

.fd-3 {
  width: 120px;
  height: 120px;
  top: 28%;
  right: 5%;
  animation-delay: -7s;
}

.fd-4 {
  width: 44px;
  height: 44px;
  top: 76%;
  right: 13%;
  border-color: rgba(245, 130, 32, 0.13);
  animation-delay: -10s;
}

.fd-5 {
  width: 70px;
  height: 70px;
  top: 6%;
  right: 42%;
  animation-delay: -2s;
}

@keyframes fdFloat {
  0%,
  100% {
    transform: translateY(0);
    rotate: 45deg;
  }
  50% {
    transform: translateY(-26px);
    rotate: 57deg;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: right 0.6s ease;
}

.btn:hover::after {
  right: 130%;
}

.btn-primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(230, 67, 46, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -8px rgba(230, 67, 46, 0.55);
}

.btn-ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--blue);
  background: #fff;
}

.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  background: rgba(27, 94, 168, 0.05);
}

.btn-wa {
  background: #1fab53;
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(31, 171, 83, 0.5);
}

.btn-wa:hover {
  transform: translateY(-3px);
  background: #189549;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 6px 24px -10px rgba(23, 56, 94, 0.12);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.logo:hover img {
  transform: rotate(90deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-text strong {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue);
}

.logo-text small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links ul {
  display: flex;
  gap: 4px;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--body);
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 14px;
  left: 14px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  align-items: center;
}

.burger span {
  display: block;
  width: 20px;
  height: 2.4px;
  border-radius: 4px;
  background: var(--blue);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(7.9px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7.9px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 34, 60, 0.5);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(330px, 86vw);
  background: #fff;
  border-inline-end: 1px solid var(--line);
  z-index: 120;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(-108%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mm-head img {
  width: 44px;
}

.mm-head strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--blue);
}

.mm-head small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.mm-links {
  display: flex;
  flex-direction: column;
}

.mm-links a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--body);
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.mm-links a:hover {
  background: var(--bg-soft);
  color: var(--ink);
  padding-inline-start: 18px;
}

.mm-cta {
  margin-top: auto;
}

.mm-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  direction: ltr;
  text-align: right;
}

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 50px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  overflow: hidden;
}

#netCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(27, 94, 168, 0.07);
  border: 1px solid rgba(27, 94, 168, 0.18);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.badge svg {
  color: var(--orange);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.grad-text-warm {
  background: linear-gradient(to left, #ffc98f, #f58220);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.type-line {
  min-height: 2.4em;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.caret {
  display: inline-block;
  width: 2.5px;
  height: 1.15em;
  background: var(--orange);
  margin-inline-start: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: caretBlink 0.9s step-end infinite;
}

@keyframes caretBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-sub {
  color: var(--body);
  font-size: 1.02rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chips span {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-chips span:hover {
  border-color: var(--orange);
  color: var(--orange-ink);
  transform: translateY(-2px);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.diamond-scene {
  position: relative;
  width: min(430px, 88%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.d-ring {
  position: absolute;
  border-radius: 24%;
  border: 2px solid transparent;
}

.d-ring-1 {
  width: 58%;
  height: 58%;
  background: linear-gradient(135deg, rgba(46, 155, 218, 0.75), rgba(245, 130, 32, 0.75)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: ringSpin 26s linear infinite;
}

.d-ring-2 {
  width: 78%;
  height: 78%;
  border-color: rgba(27, 94, 168, 0.14);
  animation: ringSpinRev 38s linear infinite;
}

.d-ring-3 {
  width: 97%;
  height: 97%;
  border-color: rgba(245, 130, 32, 0.16);
  animation: ringSpin 52s linear infinite;
}

@keyframes ringSpin {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

@keyframes ringSpinRev {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(-315deg);
  }
}

.hero-mark {
  width: 46%;
  filter: drop-shadow(0 22px 40px rgba(23, 56, 94, 0.28));
  animation: markFloat 5.5s ease-in-out infinite;
}

@keyframes markFloat {
  0%,
  100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(12px);
  }
}

.orbit {
  position: absolute;
  inset: 0;
  animation: orbitSpin 30s linear infinite;
}

.orbit img {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 46px;
  height: 46px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  object-fit: contain;
  animation: orbitCounter 30s linear infinite;
}

.orbit-2,
.orbit-2 img {
  animation-delay: -7.5s;
}

.orbit-3,
.orbit-3 img {
  animation-delay: -15s;
}

.orbit-4,
.orbit-4 img {
  animation-delay: -22.5s;
}

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

@keyframes orbitCounter {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  animation: markFloat 6.5s ease-in-out infinite;
}

.fc-1 {
  top: 12%;
  right: -4%;
  animation-delay: -2s;
}

.fc-1 svg {
  color: var(--green);
}

.fc-2 {
  bottom: 10%;
  left: -6%;
  animation-delay: -4.5s;
}

.fc-2 svg {
  color: var(--orange);
}

.stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  left: -8px;
  height: 70%;
  width: 1px;
  background: var(--line);
}

.stat b {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4;
}

.stat small {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
  padding: 16px 0;
  direction: ltr;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marqueeMove 36s linear infinite;
}

.marquee-track span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-track i.marquee-icon {
  color: var(--orange);
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.marquee-track i.marquee-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
}

.marquee-track i.marquee-logo {
  background: #fff;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.marquee-track i.marquee-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 999px;
  background: rgba(27, 94, 168, 0.07);
  border: 1px solid rgba(27, 94, 168, 0.18);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}


.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
}

.logo-card {
  width: 100%;
  background: linear-gradient(150deg, #ffffff, #f2f6fb);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 56px) clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.logo-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.logo-card img {
  width: 100%;
}

.about-chip {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: markFloat 6s ease-in-out infinite;
}

.about-chip b {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-chip small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.ac-1 {
  top: -6px;
  right: -2px;
}

.ac-2 {
  bottom: -10px;
  left: 2px;
  animation-delay: -3s;
}

.fd-about-1 {
  width: 70px;
  height: 70px;
  top: -30px;
  left: 6%;
  border-color: rgba(245, 130, 32, 0.25);
}

.fd-about-2 {
  width: 46px;
  height: 46px;
  bottom: -18px;
  right: 10%;
  border-color: rgba(27, 94, 168, 0.2);
  animation-delay: -5s;
}

.about-text p {
  color: var(--body);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-text strong {
  color: var(--ink);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
}

.check-list li {
  position: relative;
  padding-inline-start: 38px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  inline-size: 24px;
  block-size: 24px;
  inset-inline-start: 0;
  top: 3px;
  border-radius: 30%;
  rotate: 45deg;
  background: linear-gradient(135deg, rgba(46, 155, 218, 0.14), rgba(245, 130, 32, 0.14));
  border: 1px solid rgba(27, 94, 168, 0.2);
}

.check-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 7px;
  top: 10px;
  width: 10px;
  height: 5px;
  border-left: 2.4px solid var(--orange);
  border-bottom: 2.4px solid var(--orange);
  transform: rotate(-45deg);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 50% -10%, rgba(46, 155, 218, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.svc-card:hover {
  transform: translateY(-10px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(46, 155, 218, 0.1), rgba(245, 130, 32, 0.1));
  border: 1px solid rgba(27, 94, 168, 0.15);
  color: var(--blue);
  margin-bottom: 24px;
  transition: transform 0.45s ease, color 0.45s ease;
}

.svc-icon svg {
  width: 30px;
  height: 30px;
}

.svc-card:hover .svc-icon {
  transform: rotate(-8deg) scale(1.08);
  color: var(--orange);
}

.svc-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}

.svc-card p {
  color: var(--body);
  font-size: 0.95rem;
  position: relative;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: 60px 0;
}

.product + .product {
  border-top: 1px dashed var(--line-strong);
}

.product-flip .product-text {
  order: 2;
}

.product-flip .product-visual {
  order: 1;
}

.product-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.3);
  color: var(--orange-ink);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-text h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.product-text > p {
  color: var(--body);
  margin-bottom: 22px;
}

.feat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 24px;
}

.feat-list li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.feat-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 30%;
  rotate: 45deg;
  background: var(--grad-mix);
  opacity: 0.85;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.product-chips span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(27, 94, 168, 0.06);
  border: 1px solid rgba(27, 94, 168, 0.16);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-visual {
  perspective: 1200px;
}

.mock {
  background: linear-gradient(160deg, #0d2a4f, #081c38);
  border: 1px solid rgba(13, 42, 79, 0.5);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}

.mock-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(124, 176, 232, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.mock-head b {
  margin-inline-start: auto;
  font-size: 0.82rem;
  color: #9fb4cd;
  font-weight: 700;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-r {
  background: #ff5f57;
}

.dot-y {
  background: #febc2e;
}

.dot-g {
  background: #28c840;
}

.mock-body {
  padding: 20px;
}

.desk-mock {
  background: linear-gradient(160deg, #0d2a4f, #081c38);
  border: 1px solid rgba(13, 42, 79, 0.5);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.desk-screen {
  position: relative;
  aspect-ratio: 1920 / 1027;
  overflow: hidden;
  background: #0a0f18;
  cursor: zoom-in;
}

.desk-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.desk-screen:hover .desk-nav {
  opacity: 1;
}

.desk-nav:hover {
  background: var(--grad-blue);
  color: #fff;
}

.desk-prev {
  right: 12px;
}

.desk-next {
  left: 12px;
}

@media (hover: none) {
  .desk-nav {
    opacity: 1;
  }
}

.almstoda-extra {
  padding-bottom: 10px;
}

.sector-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.sector-row b {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.sector-row span {
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(27, 94, 168, 0.06);
  border: 1px solid rgba(27, 94, 168, 0.16);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.store-scene {
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px 10px;
}

.store-scene .store-phone {
  width: min(270px, 66vw);
}

.phone-cssui {
  aspect-ratio: 9 / 19;
  background: #f2f6fb;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sui-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 8px;
}

.sui-head b {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
}

.sui-bell {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}

.sui-bell::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.sui-search {
  margin: 2px 12px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #a7b6c6;
}

.sui-banner {
  margin: 10px 12px;
  background: linear-gradient(120deg, #1b5ea8, #2e9bda);
  border-radius: 12px;
  padding: 9px 12px;
  color: #fff;
}

.sui-banner b {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
}

.sui-banner small {
  font-size: 0.56rem;
  font-weight: 600;
  opacity: 0.85;
}

.sui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 2px 12px 8px;
  flex: 1;
  align-content: start;
}

.sui-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 8px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sui-thumb {
  display: block;
  height: 44px;
  border-radius: 9px;
}

.th-a {
  background: linear-gradient(135deg, #8ec9f5, #1b5ea8);
}

.th-b {
  background: linear-gradient(135deg, #ffd39c, #f58220);
}

.th-c {
  background: linear-gradient(135deg, #93e2d5, #0e9384);
}

.th-d {
  background: linear-gradient(135deg, #ffb3a7, #e6432e);
}

.sui-card b {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--ink);
}

.sui-card small {
  font-size: 0.56rem;
  font-weight: 800;
  color: var(--orange-ink);
}

.sui-add {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 17px;
  height: 17px;
  border-radius: 6px;
  background: var(--grad-warm);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.sui-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.sui-nav i {
  width: 18px;
  height: 5px;
  border-radius: 4px;
  background: #d3dfec;
}

.sui-nav i.on {
  width: 26px;
  background: var(--grad-warm);
}

.sfc-1 {
  top: 6%;
  right: -2%;
}

.sfc-1 svg {
  color: var(--blue);
}

.sfc-2 {
  bottom: 10%;
  left: -4%;
  animation-delay: -3.5s;
}

.sfc-2 svg {
  color: var(--orange);
}

.custom-scene {
  position: relative;
  width: min(460px, 100%);
  margin-inline: auto;
  min-height: 470px;
}

.code-win {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: min(330px, 74%);
  background: linear-gradient(160deg, #0d2a4f, #081c38);
  border: 1px solid rgba(13, 42, 79, 0.5);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.code-body {
  padding: 20px 18px;
  display: grid;
  gap: 11px;
  direction: ltr;
}

.code-line {
  height: 9px;
  border-radius: 5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .code-line {
  transform: scaleX(1);
}

.is-visible .code-line:nth-child(1) { transition-delay: 0.1s; }
.is-visible .code-line:nth-child(2) { transition-delay: 0.2s; }
.is-visible .code-line:nth-child(3) { transition-delay: 0.3s; }
.is-visible .code-line:nth-child(4) { transition-delay: 0.4s; }
.is-visible .code-line:nth-child(5) { transition-delay: 0.5s; }
.is-visible .code-line:nth-child(6) { transition-delay: 0.6s; }
.is-visible .code-line:nth-child(7) { transition-delay: 0.7s; }

.cl-1 {
  width: 46%;
  background: #2e9bda;
}

.cl-2 {
  width: 72%;
  margin-left: 10%;
  background: rgba(255, 255, 255, 0.28);
}

.cl-3 {
  width: 58%;
  margin-left: 10%;
  background: #f58220;
}

.cl-4 {
  width: 78%;
  margin-left: 20%;
  background: rgba(255, 255, 255, 0.2);
}

.cl-5 {
  width: 40%;
  margin-left: 20%;
  background: #7cc4ef;
}

.cl-6 {
  width: 64%;
  margin-left: 10%;
  background: rgba(255, 255, 255, 0.28);
}

.cl-7 {
  width: 30%;
  background: #e6432e;
}

.flow-arrow {
  position: absolute;
  top: 40%;
  inset-inline-start: 12%;
  width: 110px;
  height: 110px;
  color: rgba(27, 94, 168, 0.55);
}

.flow-path {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-dasharray: 6 7;
  stroke-linecap: round;
  animation: linkFlow 1.4s linear infinite;
}

.flow-head {
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.custom-scene .custom-phone {
  position: absolute;
  bottom: 0;
  inset-inline-end: 4%;
  width: min(210px, 48%);
  rotate: 3deg;
}

.capp-ui {
  background: #f2f6fb;
}

.cui-head {
  height: 34px;
  background: linear-gradient(120deg, #1b5ea8, #2e9bda);
}

.cui-hero {
  margin: 10px 10px 8px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46, 155, 218, 0.25), rgba(245, 130, 32, 0.25));
}

.cui-row {
  display: block;
  margin: 0 10px 7px;
  height: 9px;
  border-radius: 5px;
  background: #dde6ef;
}

.cui-row-short {
  width: 55%;
}

.cui-cards {
  display: flex;
  gap: 8px;
  margin: 4px 10px;
}

.cui-cards i {
  flex: 1;
  height: 52px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
}

.cui-fab {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px -6px rgba(230, 67, 46, 0.5);
}

.cfc-1 {
  top: 6%;
  left: -2%;
}

.cfc-1 svg {
  color: var(--orange);
}

.sectors-wrap {
  margin-top: 40px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: var(--shadow-md);
}

.sector-card .afeat-icon {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
}

.sector-card h4 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 0.85rem;
  color: var(--body);
}

.sectors-note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.sectors-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.3s ease;
}

.sectors-note a:hover {
  color: var(--orange-ink);
}

.section-hw {
  background: linear-gradient(180deg, #f4f8fd, #e9f1fa);
  border-block: 1px solid var(--line);
}

.hw-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 26px;
}

.hw-title {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.hw-hero-text > p {
  color: var(--body);
  margin-bottom: 20px;
}

.printer-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.cssprinter {
  position: relative;
  width: 270px;
  height: 240px;
  perspective: 900px;
}

.pr-shadow {
  position: absolute;
  bottom: -16px;
  left: 6%;
  right: 6%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(23, 56, 94, 0.28), transparent 70%);
}

.pr-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 126px;
  border-radius: 20px;
  background: linear-gradient(160deg, #16355e, #0a1e3a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow-md);
  z-index: 2;
}

.pr-panel {
  position: absolute;
  bottom: 18px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.led-g {
  background: #2fbf71;
  box-shadow: 0 0 8px rgba(47, 191, 113, 0.8);
}

.led-o {
  background: #f58220;
  box-shadow: 0 0 8px rgba(245, 130, 32, 0.8);
  animation: prLed 7s linear infinite;
}

@keyframes prLed {
  0%, 45%, 88%, 100% {
    opacity: 0.25;
  }
  50%, 60%, 70%, 80% {
    opacity: 1;
  }
  55%, 65%, 75%, 85% {
    opacity: 0.3;
  }
}

.pr-btn {
  margin-inline-start: auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 2px solid rgba(124, 176, 232, 0.4);
}

.pr-cavity {
  position: absolute;
  bottom: 116px;
  left: 16px;
  right: 16px;
  height: 66px;
  border-radius: 14px 14px 6px 6px;
  background: #071224;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.7);
  z-index: 1;
  overflow: hidden;
}

.pr-roll {
  position: absolute;
  top: 16px;
  left: 20px;
  right: 20px;
  height: 42px;
  border-radius: 21px;
  background: linear-gradient(180deg, #ffffff, #dbe4ed 55%, #b6c4d3);
  animation: prRoll 7s ease-in-out infinite;
}

.pr-roll::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  translate: 0 -50%;
  border-radius: 2px;
  background: rgba(23, 56, 94, 0.18);
}

@keyframes prRoll {
  0%, 10%, 36%, 100% {
    transform: translateY(0);
  }
  18%, 28% {
    transform: translateY(-7px);
  }
}

.pr-lid {
  position: absolute;
  bottom: 116px;
  left: 10px;
  right: 10px;
  height: 74px;
  border-radius: 16px;
  background: linear-gradient(160deg, #1c4373, #0e2a4e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 16px -6px rgba(5, 15, 31, 0.5);
  transform-origin: 50% 8%;
  animation: prLid 7s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  z-index: 3;
}

@keyframes prLid {
  0%, 40%, 100% {
    transform: rotateX(0deg);
  }
  14%, 28% {
    transform: rotateX(-72deg);
  }
}

.pr-slot {
  position: absolute;
  bottom: 10px;
  left: 18px;
  right: 18px;
  height: 6px;
  border-radius: 4px;
  background: #04101f;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.9);
}

.pr-paperwrap {
  position: absolute;
  bottom: 176px;
  left: 50%;
  translate: -50% 0;
  width: 132px;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.pr-paper {
  display: block;
  width: 100%;
  height: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 12px, #d7dfe8 12px 15px, transparent 15px 22px),
    linear-gradient(180deg, #aebfd0 0 10px, transparent 10px),
    #ffffff;
  border: 1px solid #dbe3ec;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -6px 16px -8px rgba(23, 56, 94, 0.25);
  animation: prPaper 7s cubic-bezier(0.3, 0, 0.4, 1) infinite;
}

@keyframes prPaper {
  0%, 46% {
    height: 0;
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    height: 128px;
    opacity: 1;
    transform: translateY(0);
  }
  86% {
    height: 128px;
    opacity: 1;
    transform: translateY(-16px);
  }
  92%, 100% {
    height: 128px;
    opacity: 0;
    transform: translateY(-34px);
  }
}

.hfc-1 {
  top: 4%;
  right: 2%;
}

.hfc-1 svg {
  color: var(--blue);
}

.hfc-2 {
  bottom: 2%;
  left: 0;
  animation-delay: -3.5s;
}

.hfc-2 svg {
  color: var(--green);
}

.paper-cards {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.paper-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.paper-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.paper-card b {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.paper-card small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.roll {
  position: relative;
  display: block;
  width: 46px;
  height: 52px;
  flex-shrink: 0;
}

.roll::before {
  content: "";
  position: absolute;
  inset: 9px 5px 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #dde6ef, #ffffff 35%, #c9d5e1);
}

.roll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  right: 5px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d3dfec;
  background: radial-gradient(circle, #94a7ba 0 3px, #f8fafc 4px);
}

.roll-58 {
  width: 36px;
  height: 44px;
}

.roll-80 {
  width: 52px;
  height: 58px;
}

.roll-label::before {
  background: linear-gradient(90deg, #f3e3c4, #fff8ea 35%, #e8d3ac);
}

.roll-label::after {
  background: radial-gradient(circle, #c9a25f 0 3px, #fdf6e7 4px);
  border-color: #e8d8b8;
}

.hw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.hw-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.hw-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 94, 168, 0.3);
  box-shadow: var(--shadow-md);
}

.hw-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hw-img img {
  max-height: 154px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.hw-card:hover .hw-img img {
  transform: scale(1.07);
}

.hw-info {
  padding: 18px 20px 22px;
}

.hw-model {
  display: inline-block;
  direction: ltr;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(27, 94, 168, 0.07);
  border: 1px solid rgba(27, 94, 168, 0.16);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.hw-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.hw-card p {
  font-size: 0.85rem;
  color: var(--body);
}

.hw-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.pill {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill.ok {
  background: rgba(47, 191, 113, 0.14);
  color: #5fe0a1;
  border: 1px solid rgba(47, 191, 113, 0.35);
}

.pill.soon {
  background: rgba(245, 130, 32, 0.14);
  color: #ffb35c;
  border: 1px solid rgba(245, 130, 32, 0.4);
}

.pill.late {
  background: rgba(230, 67, 46, 0.14);
  color: #ff8d7e;
  border: 1px solid rgba(230, 67, 46, 0.4);
}

.app-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.app-title h3 {
  margin-bottom: 0;
}

.app-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.app-stats {
  display: flex;
  gap: 12px;
  margin: 20px 0 24px;
}

.astat {
  flex: 1;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 8px;
  box-shadow: var(--shadow-sm);
}

.astat b {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-mix);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4;
}

.astat small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(160deg, #142c4e, #0a1c36);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(10, 28, 54, 0.55);
}

.btn-store svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.btn-store small {
  display: block;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  line-height: 1.4;
}

.btn-store b {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}

.app-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(27, 94, 168, 0.3);
  text-underline-offset: 5px;
  transition: color 0.3s ease;
}

.app-link:hover {
  color: var(--orange-ink);
  text-decoration-color: rgba(201, 100, 16, 0.4);
}

.phone-scene {
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px 10px;
}

.phone {
  width: min(280px, 68vw);
  border-radius: 40px;
  border: 9px solid #12233c;
  background: #12233c;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.afc-1 {
  top: 8%;
  right: -2%;
}

.afc-1 svg {
  color: var(--orange);
}

.afc-2 {
  bottom: 9%;
  left: -3%;
  animation-delay: -3.5s;
}

.afc-2 svg {
  color: var(--blue);
}

.fd-phone-1 {
  width: 80px;
  height: 80px;
  top: 4%;
  left: 6%;
  border-color: rgba(27, 94, 168, 0.18);
}

.fd-phone-2 {
  width: 52px;
  height: 52px;
  bottom: 2%;
  right: 8%;
  border-color: rgba(245, 130, 32, 0.25);
  animation-delay: -6s;
}

.aksat-extra {
  padding-bottom: 30px;
}

.section-head-minor {
  margin: 60px auto 10px;
}

.minor-title {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 900;
}

.minor-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 8px;
}

.afeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.afeat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.afeat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.afeat-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  color: #fff;
}

.afeat-icon svg {
  width: 24px;
  height: 24px;
}

.afeat h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.afeat p {
  font-size: 0.83rem;
  color: var(--body);
  line-height: 1.7;
}

.tour {
  position: relative;
  margin-top: 40px;
}

.tour-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
}

.sphone {
  position: relative;
  background: linear-gradient(160deg, #131a26, #090d14);
  border: 1px solid #2b3648;
  border-radius: 34px;
  padding: 8px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sphone-main {
  width: min(290px, 72vw);
  z-index: 2;
  cursor: zoom-in;
}

.sphone-main::before {
  content: "";
  position: absolute;
  top: 21%;
  right: -3px;
  width: 3px;
  height: 52px;
  border-radius: 3px;
  background: #2b3648;
  box-shadow: 0 70px 0 #2b3648;
}

.sphone-side {
  width: min(190px, 20vw);
  opacity: 0.5;
  transform: scale(0.94);
  filter: saturate(0.75);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sphone-side:hover {
  opacity: 0.85;
  transform: scale(0.97);
}

.s-screen {
  position: relative;
  overflow: hidden;
  border-radius: 27px;
  aspect-ratio: 1080 / 2340;
  background: #0a0f18;
}

.s-cam {
  position: absolute;
  top: 15px;
  left: 50%;
  translate: -50% 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #04070c;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), inset 0 0 3px rgba(90, 140, 255, 0.5);
  z-index: 3;
  pointer-events: none;
}

.s-track {
  display: flex;
  height: 100%;
  direction: ltr;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.s-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sphone-side .s-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-nav {
  position: absolute;
  top: 44%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tour-nav:hover {
  background: var(--grad-blue);
  color: #fff;
  transform: scale(1.08);
}

.tour-prev {
  right: clamp(4px, 8vw, 120px);
}

.tour-next {
  left: clamp(4px, 8vw, 120px);
}

.tour-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.tour-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.tour-dots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  padding: 0;
  background: var(--line-strong);
  transition: width 0.35s ease, background 0.35s ease;
}

.tour-dots button.on {
  width: 26px;
  background: var(--grad-warm);
}

.tour-count {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--muted);
  direction: ltr;
  min-width: 52px;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  background: rgba(7, 17, 33, 0.9);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 86vh;
  max-width: 88vw;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lb-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.3s ease;
  z-index: 2;
}

.lb-close:hover {
  background: rgba(230, 67, 46, 0.8);
}

.lb-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.3s ease;
  z-index: 2;
}

.lb-nav:hover {
  background: rgba(27, 94, 168, 0.85);
}

.lb-prev {
  right: 18px;
}

.lb-next {
  left: 18px;
}

.net-svg {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.net-svg .link {
  stroke: rgba(124, 176, 232, 0.45);
  stroke-width: 1.6;
  stroke-dasharray: 6 7;
  animation: linkFlow 1.6s linear infinite;
}

@keyframes linkFlow {
  to {
    stroke-dashoffset: -26;
  }
}

.net-svg .node rect,
.net-svg .node circle {
  fill: rgba(12, 37, 71, 0.95);
  stroke: #2e9bda;
  stroke-width: 1.6;
}

.net-svg .node.server rect {
  stroke: #f58220;
}

.net-svg .node.server circle {
  fill: #f58220;
  stroke: none;
}

.net-svg .node.server path {
  stroke: rgba(124, 176, 232, 0.7);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.net-svg .pulse {
  fill: none;
  stroke: rgba(46, 155, 218, 0.5);
  animation: pulseGrow 2.6s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.net-svg .c2 .pulse {
  animation-delay: 0.6s;
}

.net-svg .c3 .pulse {
  animation-delay: 1.2s;
}

.net-svg .c4 .pulse {
  animation-delay: 1.8s;
}

.net-svg .c5 .pulse {
  animation-delay: 2.2s;
}

@keyframes pulseGrow {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.net-svg .nlabel {
  fill: #9fb4cd;
  font-size: 10.5px;
  font-weight: 700;
  font-family: "Cairo", sans-serif;
}

.net-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(245, 130, 32, 0.09);
  border: 1px solid rgba(245, 130, 32, 0.25);
  color: var(--orange-ink);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-item h3 {
  font-size: 1.08rem;
  font-weight: 800;
}

.why-item p {
  color: var(--body);
  font-size: 0.92rem;
}

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

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--grad-mix);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.step:hover::after {
  transform: scaleX(1);
}

.step-num {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(27, 94, 168, 0.4), rgba(27, 94, 168, 0.07));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.step p {
  color: var(--body);
  font-size: 0.92rem;
}

.tech-marquee {
  overflow: hidden;
  padding: 14px 0;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.tech-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeMove 34s linear infinite;
}

.tech-track-rev {
  animation-direction: reverse;
}

.tech-marquee:hover .tech-track {
  animation-play-state: paused;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.tech-item:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.tech-item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tech-item b {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--body);
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.open {
  border-color: rgba(245, 130, 32, 0.4);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: start;
  color: var(--ink);
  transition: color 0.3s ease;
}

.faq-item.open .faq-q {
  color: var(--orange-ink);
}

.faq-x {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(27, 94, 168, 0.07);
  border: 1px solid rgba(27, 94, 168, 0.18);
  flex-shrink: 0;
  transition: background 0.35s ease, transform 0.35s ease;
}

.faq-x::before,
.faq-x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--blue);
  border-radius: 3px;
  transition: background 0.35s ease;
}

.faq-x::before {
  width: 13px;
  height: 2.2px;
}

.faq-x::after {
  width: 2.2px;
  height: 13px;
}

.faq-item.open .faq-x {
  transform: rotate(135deg);
  background: rgba(245, 130, 32, 0.12);
}

.faq-item.open .faq-x::before,
.faq-item.open .faq-x::after {
  background: var(--orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a p {
  padding: 0 24px 22px;
  color: var(--body);
  font-size: 0.96rem;
}

.cta-section {
  padding-top: 30px;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: clamp(50px, 7vw, 84px) clamp(24px, 5vw, 80px);
  border-radius: 28px;
  background:
    radial-gradient(600px 300px at 80% -20%, rgba(245, 130, 32, 0.22), transparent 60%),
    radial-gradient(500px 300px at 10% 120%, rgba(46, 155, 218, 0.25), transparent 60%),
    linear-gradient(150deg, #0f3260, #081c38);
  border: 1px solid rgba(13, 42, 79, 0.6);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta-card p {
  color: rgba(234, 242, 251, 0.78);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}

.fd-cta-1 {
  width: 110px;
  height: 110px;
  top: -36px;
  left: 8%;
  border-color: rgba(124, 196, 239, 0.2);
}

.fd-cta-2 {
  width: 70px;
  height: 70px;
  bottom: -22px;
  right: 10%;
  border-color: rgba(245, 130, 32, 0.3);
  animation-delay: -6s;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.ccard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ccard:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.ccard-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(27, 94, 168, 0.07);
  border: 1px solid rgba(27, 94, 168, 0.18);
  color: var(--blue);
  flex-shrink: 0;
}

.ccard-icon svg {
  width: 24px;
  height: 24px;
}

.ccard-icon-wa {
  background: rgba(31, 171, 83, 0.08);
  border-color: rgba(31, 171, 83, 0.3);
  color: #1fab53;
}

.ccard small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.ccard b {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--ink);
  word-break: break-word;
}

[data-site-text="phone"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  width: 100%;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a7b6c6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 94, 168, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231b5ea8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: left 14px center;
  background-size: 14px 14px;
  background-repeat: no-repeat;
}

.field select:invalid {
  color: #a7b6c6;
}

.field option {
  background: #fff;
  color: var(--ink);
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: -6px;
}

.footer {
  background: linear-gradient(180deg, #0d2a4f, #081c38);
  color: #c9d8e8;
  padding: 70px 0 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer .logo-text strong {
  color: #fff;
}

.footer .logo-text small {
  color: #9fb4cd;
}

.f-brand p {
  color: #9fb4cd;
  font-size: 0.94rem;
  margin: 18px 0 22px;
  max-width: 320px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c9d8e8;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social a:hover {
  transform: translateY(-4px);
  background: var(--grad-warm);
  border-color: transparent;
  color: #fff;
}

.social svg {
  width: 20px;
  height: 20px;
}

.f-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.f-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 34px;
  height: 3px;
  border-radius: 4px;
  background: var(--grad-warm);
}

.f-col ul {
  display: grid;
  gap: 10px;
}

.f-col a,
.f-col span {
  color: #9fb4cd;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease, padding 0.3s ease;
}

.f-col a:hover {
  color: #ffb35c;
  padding-inline-start: 6px;
}

.f-contact a {
  direction: ltr;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9fb4cd;
  font-size: 0.85rem;
}

.wa-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fab53;
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(31, 171, 83, 0.55);
  transition: transform 0.3s ease;
}

.wa-fab:hover {
  transform: scale(1.1) rotate(8deg);
}

.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31, 171, 83, 0.6);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--grad-blue);
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-visual[data-reveal] {
  transform: translateY(0) scale(0.92);
}

.hero-visual[data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 1140px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: calc(var(--nav-h) + 40px);
    min-height: auto;
  }

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

  .badge {
    margin-bottom: 18px;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-cta,
  .hero-chips {
    justify-content: center;
  }

  .diamond-scene {
    width: min(350px, 80vw);
  }

  .fc-1 {
    right: 0;
  }

  .fc-2 {
    left: 0;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .stat:nth-child(3)::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-media {
    max-width: 480px;
    margin-inline: auto;
  }

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

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

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

  .product {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .product-flip .product-text {
    order: 1;
  }

  .product-flip .product-visual {
    order: 2;
  }

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

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

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

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

  .hw-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 620px) {
  :root {
    --nav-h: 68px;
  }

  .section {
    padding: 80px 0;
  }

  .container,
  .container-narrow {
    width: calc(100% - 36px);
  }

  .svc-grid,
  .why-grid,
  .steps,
  .form-row,
  .feat-list,
  .afeat-grid,
  .sectors-grid,
  .hw-grid {
    grid-template-columns: 1fr;
  }

  .hw-img {
    height: 210px;
  }

  .hw-img img {
    max-height: 174px;
  }

  .custom-scene {
    min-height: 400px;
  }

  .code-win {
    width: 76%;
  }

  .custom-scene .custom-phone {
    width: 47%;
    inset-inline-end: 0;
  }

  .flow-arrow {
    width: 84px;
    height: 84px;
    top: 42%;
  }

  .store-btns .btn-store {
    flex: 1;
    justify-content: center;
  }

  .phone {
    width: min(240px, 72vw);
  }

  .sphone-side {
    display: none;
  }

  .sphone-main {
    width: min(250px, 74vw);
  }

  .tour-nav {
    width: 42px;
    height: 42px;
    top: 42%;
  }

  .tour-prev {
    right: 2px;
  }

  .tour-next {
    left: 2px;
  }

  .lb-nav {
    top: auto;
    bottom: 22px;
    translate: 0 0;
  }

  .stats-strip {
    padding: 22px 18px;
  }

  .stat::after {
    display: none;
  }

  .kpi-row {
    grid-template-columns: 1fr 1fr;
  }

  .kpi:nth-child(3) {
    display: none;
  }

  .inst-top {
    flex-direction: column;
  }

  .inst-sum {
    width: 100%;
  }

  .float-card {
    font-size: 0.76rem;
    padding: 9px 13px;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .wa-fab {
    width: 52px;
    height: 52px;
    bottom: 18px;
    left: 18px;
  }

  .to-top {
    bottom: 18px;
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track,
  .tech-track {
    animation: none;
  }
}
