@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Rajdhani, Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: Orbitron, Arial, sans-serif;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #00e5ff;
  border-radius: 3px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}
.nav-logo-title {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.nav-logo-sub {
  font-size: 0.6rem;
  color: #00e5ff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}
.nav-mobile-cta { display: none; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: #8a9bb0;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #00e5ff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #00e5ff, #1a3fd4);
  color: #000;
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #00e5ff;
  border: 1.5px solid #00e5ff;
}
.btn-outline:hover {
  background: #00e5ff;
  color: #000;
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #00e5ff;
}
section {
  padding: 90px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.lbl {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.stitle {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}
.stitle span {
  color: #00e5ff;
}
.sdesc {
  color: #8a9bb0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #1a3fd4);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: #000;
}
.hbg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 70% 50%,
      rgba(26, 63, 212, 0.18),
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(0, 229, 255, 0.07),
      transparent 60%
    );
}
.hgrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hinner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  color: #00e5ff;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.htitle {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.htitle .t1 {
  color: #fff;
}
.htitle .t2 {
  color: #00e5ff;
}
.htitle .t3 {
  color: #1a3fd4;
}
.hdesc {
  color: #8a9bb0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 480px;
}
.hbtns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hstats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.snum {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00e5ff;
  display: block;
}
.slbl {
  font-size: 0.75rem;
  color: #8a9bb0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hvisual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lwrap {
  position: relative;
  width: 360px;
  height: 360px;
}
.lring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.2);
  animation: spin 20s linear infinite;
}
.lring::before,
.lring2::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.lring::before {
  background: #00e5ff;
}
.lring2 {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  border: 1px solid rgba(26, 63, 212, 0.2);
  animation: spin 35s linear infinite reverse;
}
.lring2::before {
  background: #1a3fd4;
}
.lglow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.hlogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.4));
}
.cgrid,
.pcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.card,
.pcard {
  background: #0e1120;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}
.card::before,
.pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #1a3fd4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover,
.pcard:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-5px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(0, 229, 255, 0.07);
}
.card:hover::before,
.pcard:hover::before {
  transform: scaleX(1);
}
.pcard {
  display: flex;
  flex-direction: column;
}
.pcard.feat {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(160deg, #0d1a3a, #0e1120);
}
.pcard.feat::before {
  transform: scaleX(1);
}
.cico {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.cico svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}
.ic {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: #00e5ff;
}
.ib {
  background: rgba(91, 138, 255, 0.12);
  border: 1px solid rgba(91, 138, 255, 0.25);
  color: #5b8aff;
}
.ig {
  background: rgba(46, 139, 46, 0.12);
  border: 1px solid rgba(46, 139, 46, 0.25);
  color: #3cb83c;
}
.ip {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #a855f7;
}
.io {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #f97316;
}
.it {
  background: rgba(244, 114, 182, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.25);
  color: #f472b6;
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #fff;
}
.card > p {
  color: #8a9bb0;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.tag {
  font-size: 0.68rem;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.tc {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  border: 1px solid rgba(0, 229, 255, 0.2);
}
.tb {
  background: rgba(91, 138, 255, 0.1);
  color: #5b8aff;
  border: 1px solid rgba(91, 138, 255, 0.2);
}
.tg {
  background: rgba(60, 184, 60, 0.1);
  color: #3cb83c;
  border: 1px solid rgba(60, 184, 60, 0.2);
}
.tp {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.to {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.tt {
  background: rgba(244, 114, 182, 0.1);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.2);
}
.psvc {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.pnum {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.pnum span {
  color: #00e5ff;
}
.pcard > p {
  color: #8a9bb0;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}
.pcard .btn {
  align-self: flex-start;
  margin-top: auto;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.wlist {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.wi {
  display: flex;
  gap: 1.2rem;
}
.wnum {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.15);
  min-width: 46px;
  line-height: 1;
}
.wtxt h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.wtxt p {
  color: #8a9bb0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.wvis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wcard {
  background: #0e1120;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  padding: 1.4rem;
  text-align: center;
  transition: border-color 0.3s;
}
.wcard:hover {
  border-color: rgba(0, 229, 255, 0.3);
}
.wcico {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wcico svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}
.wcard h4 {
  font-size: 0.8rem;
  color: #00e5ff;
  margin-bottom: 0.2rem;
}
.wcard p {
  font-size: 0.78rem;
  color: #8a9bb0;
}
.pff {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
}
.fbtn {
  padding: 0.45rem 1rem;
  border-radius: 3px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: transparent;
  color: #8a9bb0;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: Rajdhani, Arial, sans-serif;
}
.fbtn.active,
.fbtn:hover {
  background: #00e5ff;
  color: #000;
  border-color: #00e5ff;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}
.pgrid.web-view {
  grid-template-columns: repeat(2, 1fr);
}
.pgrid.web-view .pitem-wide {
  grid-column: auto !important;
}
.pitem {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.1);
  position: relative;
  aspect-ratio: 16/10;
  background: #0e1120;
  cursor: pointer;
}
.pitem:hover .pover {
  opacity: 1;
}
.pph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #0d1a3a, #0e1120);
}
.pphi {
  font-size: 2.2rem;
  opacity: 0.4;
}
.pphl {
  font-size: 0.75rem;
  color: #8a9bb0;
  letter-spacing: 0.1em;
}
.plink-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 229, 255, 0.92);
  color: #000;
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  z-index: 1;
}
.pover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.pover h4 {
  font-size: 1rem;
  color: #fff;
}
.pover p {
  font-size: 0.82rem;
  color: #00e5ff;
}
.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.scard {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
  transition: all 0.3s;
}
.scard:hover {
  border-color: #00e5ff;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
  transform: translateY(-4px);
}
.sprev {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #001a1a, #0d1530);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
}
.sprev img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 0.6rem;
}
.sname {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.6rem;
  color: #00e5ff;
  letter-spacing: 0.15em;
}
.sinfo {
  padding: 0.8rem;
  background: #0e1120;
}
.sinfo h4 {
  font-size: 0.82rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.sinfo p {
  font-size: 0.73rem;
  color: #8a9bb0;
}
.cwrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  margin-top: 3.5rem;
}
.cinfo {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.citem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cico2 {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.citem h4 {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.75rem;
  color: #00e5ff;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.citem p,
.citem a {
  color: #8a9bb0;
  font-size: 0.92rem;
}
.citem a:hover {
  color: #00e5ff;
}
.csoc h4 {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 0.9rem;
}
.slinks {
  display: flex;
  gap: 0.7rem;
}
.slink {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0e1120;
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9bb0;
  transition: all 0.25s;
}
.slink:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: #00e5ff;
  color: #00e5ff;
}
.slink.fb:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: #1877f2;
  color: #1877f2;
}
.ctiles {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ctile {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ctile:hover {
  transform: translateY(-4px);
}
.ctile.cem {
  background: linear-gradient(135deg, #001a20, #0d1a3a);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 229, 255, 0.07);
}
.ctile.cem:hover {
  box-shadow: 0 10px 36px rgba(0, 229, 255, 0.18);
}
.ctile.cfb {
  background: linear-gradient(135deg, #001030, #0d1550);
  border-color: rgba(24, 119, 242, 0.3);
  box-shadow: 0 4px 24px rgba(24, 119, 242, 0.07);
}
.ctile.cfb:hover {
  box-shadow: 0 10px 36px rgba(24, 119, 242, 0.22);
}
.ctile-ico {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.ctile.cem .ctile-ico {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: #00e5ff;
}
.ctile.cfb .ctile-ico {
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #5b9bff;
}
.ctile h3 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
}
.ctile > p {
  color: #8a9bb0;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.cta {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
}
.ctile.cem .cta {
  color: #00e5ff;
}
.ctile.cfb .cta {
  color: #5b9bff;
}
footer {
  background: #000;
  padding: 55px 0 28px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}
.fgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.8rem;
}
.flogo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.flogo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}
.flogo span {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.ftag {
  color: #8a9bb0;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1rem;
}
.fsoc {
  display: flex;
  gap: 0.5rem;
}
.fcol h5 {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #00e5ff;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fcol a {
  color: #8a9bb0;
  font-size: 0.87rem;
  transition: color 0.2s;
}
.fcol a:hover {
  color: #00e5ff;
}
.fbot {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.fcopy {
  color: #8a9bb0;
  font-size: 0.82rem;
}
.fcopy span {
  color: #00e5ff;
}
.fbadges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.fbadge {
  font-size: 0.67rem;
  padding: 0.22rem 0.55rem;
  border-radius: 3px;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.15);
  color: #8a9bb0;
}
.bktop {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 998;
  text-decoration: none;
}
.bktop.show {
  opacity: 1;
  pointer-events: all;
}
.bktop:hover {
  background: #00e5ff;
  color: #000;
}
@media (max-width: 1024px) {
  .hinner,
  .why-grid,
  .cwrap {
    grid-template-columns: 1fr;
  }
  .hvisual {
    margin-top: 2rem;
    justify-content: center;
  }
  .lwrap {
    width: 260px;
    height: 260px;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  section {
    padding: 65px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .ham {
    display: flex;
  }
  .nav-mobile-cta { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    width: max-content;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-left: 1px solid rgba(0, 229, 255, 0.15);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 0 0 0 8px;
    z-index: 998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .fbot {
    flex-direction: column;
    text-align: center;
  }
  .cwrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 3.5rem;
}
.proc-step {
  background: #0e1120;
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.proc-step:hover {
  border-color: rgba(0, 229, 255, 0.35);
  transform: translateY(-4px);
}
.proc-num {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 229, 255, 0.12);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.proc-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.proc-step p {
  color: #8a9bb0;
  font-size: 0.9rem;
  line-height: 1.65;
}
.proc-step ul {
  color: #8a9bb0;
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.proc-step ul li {
  margin-bottom: 0.3rem;
}
.proc-note {
  background: linear-gradient(135deg, #0d1a3a, #0e1120);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}
.proc-note h4 {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.78rem;
  color: #00e5ff;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.proc-note p {
  color: #8a9bb0;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.proc-note p:last-child {
  margin-bottom: 0;
}
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.pay-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 1.4rem;
  text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.1);
}
.pay-pct {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #00e5ff;
  display: block;
  margin-bottom: 0.4rem;
}
.pay-lbl {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}
.pay-sub {
  font-size: 0.78rem;
  color: #8a9bb0;
}
.bundle-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  cursor: pointer;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.06);
  border: 1.5px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  padding: 1rem 2rem;
  transition: all 0.3s;
  width: 100%;
  text-transform: uppercase;
}
.bundle-toggle:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: #00e5ff;
}
.bundle-toggle .arrow {
  transition: transform 0.3s;
  font-style: normal;
}
.bundle-toggle.open .arrow {
  transform: rotate(180deg);
}

.bundle-label {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.email-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.email-modal-overlay.open {
  display: flex;
}
.email-modal {
  background: #111218;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.email-modal h3 {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.email-modal .em-addr {
  color: #00e5ff;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.em-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.12);
  background: #0e1120;
  cursor: pointer;
  margin-bottom: 0.8rem;
  transition: all 0.25s;
  text-decoration: none;
}
.em-option:hover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.07);
}
.em-option:last-child {
  margin-bottom: 0;
}
.em-option-ico {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.em-option-text h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.em-option-text p {
  font-size: 0.78rem;
  color: #8a9bb0;
}
.em-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #8a9bb0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.em-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.em-copied {
  color: #3cb83c;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.8rem;
  display: none;
}
.reviews-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: stretch;
}
.reviews-imgs {
  display: flex;
  flex-direction: column;
}
.reviews-imgs .review-img {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviews-imgs .review-img img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.reviews-btns .review-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.reviews-btns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: space-between;
}
.rev-see {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.5rem;
  border-radius: 8px;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(24, 119, 242, 0.1);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #5b9bff;
}
.rev-see:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}
.rev-leave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.5rem;
  border-radius: 8px;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  background: linear-gradient(135deg, #1877f2, #0d5bbf);
  color: #fff;
}
.rev-leave:hover {
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.4);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .reviews-wrap {
    grid-template-columns: 1fr;
  }
}
.lring3 {
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.12);
  animation: spin 28s linear infinite;
}
.lring4 {
  position: absolute;
  inset: -35px;
  border-radius: 50%;
  border: 1px solid rgba(26, 63, 212, 0.15);
  animation: spin 12s linear infinite reverse;
}
.lring4::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1a3fd4;
}
.logo-text-svg {
  position: absolute;
  inset: -88px;
  width: calc(100% + 176px);
  height: calc(100% + 176px);
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: none;
  animation: spin 18s linear infinite;
}
.logo-text-svg text {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 13px;
  fill: rgba(0, 229, 255, 0.35);
  letter-spacing: 0.15em;
  transition: fill 0.3s;
}
.lwrap:hover .logo-text-svg text {
  fill: #00e5ff;
}

.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0e1120;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  padding: 1rem 2rem;
  z-index: 9998;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-bar.show {
  display: flex;
}
.cookie-bar p {
  color: #8a9bb0;
  font-size: 0.85rem;
  margin: 0;
}
.cookie-bar p a {
  color: #00e5ff;
  text-decoration: underline;
}
.cookie-bar button {
  background: #00e5ff;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.4rem;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cookie-bar button:hover {
  opacity: 0.85;
}
.bpriority {
  display: inline-block;
  font-size: 0.65rem;
  color: #00e5ff;
  font-weight: 600;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 3px;
  padding: 0.18rem 0.55rem;
  margin-bottom: 1rem;
}
.priority-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 165, 0, 0.25);
  background: transparent;
  color: #8a9bb0;
  cursor: pointer;
  font-family: Rajdhani, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  margin-bottom: 0.6rem;
}
.priority-btn:hover {
  border-color: rgba(255, 165, 0, 0.5);
  color: #ffa500;
  background: rgba(255, 165, 0, 0.05);
}
.priority-btn.active {
  background: rgba(255, 165, 0, 0.1);
  border-color: rgba(255, 165, 0, 0.5);
  color: #ffa500;
}
.bbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  border: 1.5px solid #00e5ff;
  background: transparent;
  color: #00e5ff;
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.bbtn:hover {
  background: #00e5ff;
  color: #000;
}
.bbtn .ba {
  display: inline-block;
  transition: transform 0.3s;
}
.bbtn.open .ba {
  transform: rotate(180deg);
}
.bwrap {
  display: none;
  margin-top: 2rem;
}
.bwrap.open {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.bcard {
  background: linear-gradient(160deg, #0d1a3a, #0e1120);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 8px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
}
.bcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00e5ff, #1a3fd4);
}
.bcard:hover {
  border-color: #00e5ff;
  transform: translateY(-4px);
}
.blbl {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #00e5ff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.bname {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.bprice {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.bprice span {
  color: #00e5ff;
}
.bwas {
  font-size: 0.78rem;
  color: #8a9bb0;
  text-decoration: line-through;
  margin-bottom: 0.3rem;
}
.bsave {
  display: inline-block;
  font-size: 0.72rem;
  color: #3cb83c;
  font-weight: 700;
  background: rgba(60, 184, 60, 0.1);
  border: 1px solid rgba(60, 184, 60, 0.25);
  border-radius: 3px;
  padding: 0.18rem 0.55rem;
  margin-bottom: 1rem;
}
.bitems {
  list-style: none;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.bitems li {
  font-size: 0.86rem;
  color: #8a9bb0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.bitems li::before {
  content: "\2713";
  color: #00e5ff;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .bwrap.open {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .bwrap.open {
    grid-template-columns: 1fr;
  }
}

.bgold {
  grid-column: 1/-1;
  background: linear-gradient(135deg, #1a1200, #2a1f00, #1a1200);
  border: 1px solid rgba(255, 200, 0, 0.4);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.bgold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
}
.bgold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 200, 0, 0.07),
    transparent 70%
  );
  pointer-events: none;
}
.bgold:hover {
  border-color: rgba(255, 200, 0, 0.7);
  transform: translateY(-3px);
}
.bgold-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.bgold-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 200px;
}
.bgold-lbl {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #ffd700;
  text-transform: uppercase;
}
.bgold-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.bgold-price {
  font-family: Orbitron, Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
}
.bgold-was {
  font-size: 0.85rem;
  color: #8a9bb0;
  text-decoration: line-through;
}
.bgold-save {
  display: inline-block;
  font-size: 0.78rem;
  color: #ffd700;
  font-weight: 700;
  background: rgba(255, 200, 0, 0.1);
  border: 1px solid rgba(255, 200, 0, 0.3);
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
}
.bgold-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.8rem;
}
.bgold-items li {
  font-size: 0.88rem;
  color: #8a9bb0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.bgold-items li::before {
  content: "\2713";
  color: #ffd700;
  font-weight: 700;
  flex-shrink: 0;
}
.bgold-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 180px;
}
.bgold-crown {
  font-size: 2.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .bgold-inner {
    grid-template-columns: 1fr;
  }
  .bgold-items {
    grid-template-columns: 1fr;
  }
}
