:root {
  --bg: #000040;
  --bg-2: #000080;
  --card: rgba(255, 255, 255, .06);
  --card-2: rgba(255, 255, 255, .08);
  --text: #f5f7fb;
  --muted: #b6c2d2;
  --line: rgba(255, 255, 255, .12);
  --azure: #20B0E0;
  --navy: #000080;
  --neon: #20E0B0;
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
  --radius: 24px;
  --container: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(116, 240, 255, .18), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(124, 255, 157, .18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(91, 166, 255, .14), transparent 25%),
    linear-gradient(180deg, rgb(0, 0, 24) 0%, rgb(0, 0, 32) 35%, rgb(0, 0, 48) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

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

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

.logo {
    height: 60px
}

.favicon {
    width: 32px;
    height: 32px
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: auto
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 20, .58);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 20px;
}

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

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(135deg, var(--azure), var(--navy), var(--neon));
  box-shadow: 0 10px 35px rgba(91, 166, 255, .35);
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background: #091121;
}

.logo-mark svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 10px
}

.logo-text b {
  display: block;
  font-size: 1.22rem;
  letter-spacing: -.03em
}

.logo-text span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .23em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap
}

.nav-links a {
  color: #d9e2ee;
  font-size: large;
}

.nav-links a:hover {
  color: #fff
}

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

.lang-switch {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 12px;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 700;
  font-size: .84rem;
}

.lang-switch button.active {
  background: #fff;
  color: #06111f
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: .25s ease;
}

.btn-primary {
  background: #fff;
  color: #091121
}

.btn-primary:hover {
  transform: translateY(-1px)
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #fff
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .08)
}

.hero {
  padding: 72px 0 48px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #dce6f4;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .04);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 14px var(--azure)
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin: 18px 0 18px;
  letter-spacing: -.05em;
}

h1 .accent,
h2 .accent {
  color: var(--azure)
}

.lead {
  font-size: 1.14rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px
}

.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.stat b {
  display: block;
  font-size: 1.1rem
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem
}

.panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel-inner {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #0b1525;
  padding: 18px;
}

.window {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.balls {
  display: flex;
  gap: 8px
}

.balls i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block
}

.balls i:nth-child(1) {
  background: var(--azure)
}

.balls i:nth-child(2) {
  background: var(--navy)
}

.balls i:nth-child(3) {
  background: var(--neon)
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 14px
}

.mock-card,
.mini-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
  padding: 18px;
}

.mock-card {
  background:
    radial-gradient(circle at top left, rgba(116, 240, 255, .24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(124, 255, 157, .24), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
}

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

.blocks div {
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08)
}

.progress {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  margin: 12px 0
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 999px
}

.progress.one span {
  width: 82%;
  background: var(--azure)
}

.progress.two span {
  width: 67%;
  background: var(--navy)
}

.progress.three span {
  width: 91%;
  background: var(--neon)
}

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

.iconbox,
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
}

section {
  padding: 74px 0
}

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

.eyebrow {
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 800;
  font-size: .96rem
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.08;
  margin: 12px 0 12px;
  letter-spacing: -.04em
}

.section-copy {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted)
}

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

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

.grid-2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow)
}

.card p {
  color: var(--muted);
  line-height: 1.8
}

.card h3 {
  font-size: 1.45rem;
  margin: 18px 0 10px
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.feature {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(32, 200, 200, .15);
  display: grid;
  place-items: center;
  flex: 0 0 24px
}

.portfolio-cover {
  height: 220px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(116, 240, 255, .32), transparent 32%),
    radial-gradient(circle at bottom right, rgba(124, 255, 157, .34), transparent 36%),
    linear-gradient(135deg, #0f1728, #13213a, #0a111e);
}

.tag {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #dbe7f5;
  font-weight: 800
}

.banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 240, 255, .18);
  background:
    radial-gradient(circle at 80% 0%, rgba(116, 240, 255, .18), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(124, 255, 157, .18), transparent 24%),
    linear-gradient(145deg, rgba(116, 240, 255, .08), rgba(255, 255, 255, .04));
  border-radius: 34px;
  padding: 32px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--muted);
  background-color: rgba(5, 10, 20, .58);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  display: grid;
  place-items: center;
}

.float-socials {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-socials a {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(8, 17, 31, .9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.float-socials a.whatsapp {
  outline: 2px solid rgba(37, 211, 102, .28)
}

.float-socials a.telegram {
  outline: 2px solid rgba(0, 136, 204, .28)
}

.float-socials a.email {
  outline: 2px solid rgba(144, 144, 144, .28)
}

.page-hero {
  padding: 56px 0 20px
}

.page-hero .card {
  padding: 34px
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.lang-rtl {
  direction: rtl
}

.lang-rtl .logo-wrap,
.lang-rtl .nav,
.lang-rtl .nav-links,
.lang-rtl .nav-actions,
.lang-rtl .footer-row,
.lang-rtl .hero-actions,
.lang-rtl .contact-actions,
.lang-rtl .socials {
  flex-direction: row-reverse
}

.lang-rtl .feature,
.lang-rtl .logo-wrap {
  direction: rtl
}

@media (max-width: 1024px) {

  .hero-grid,
  .preview-grid,
  .grid-3,
  .grid-2,
  .page-grid,
  .cards3 {
    grid-template-columns: 1fr
  }

  .feature-list {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 10px 0
  }

  .nav-links {
    display: none
  }

  .stats {
    grid-template-columns: 1fr
  }

  .cards3 {
    grid-template-columns: 1fr
  }

  section {
    padding: 58px 0
  }

  .hero {
    padding-top: 40px
  }
}