:root {
    --bg-dark: #090218;
    --bg-mid: #140733;
    --accent: #c78bff;
    --accent-soft: #f7c6ff;
    --text-main: #f5e9ff;
    --text-muted: #a590d0;
    --button-bg: rgba(199, 139, 255, 0.1);
    --button-border: rgba(199, 139, 255, 0.8);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle at top, #3b0b80 0, #090218 55%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
  }

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

    body.loading [data-key] {
      opacity: 0;
    }
    [data-key] {
      transition: opacity 0.2s ease;
      opacity: 1;
    }
    
    .lang-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-weight: bold;
      font-size: 10px;
      cursor: pointer;
      /*opacity:1;*/
      /*visibility:visible;*/
    }
    
    .lang-btn.active {
      background: rgba(199,139,255,0.6);
      border-color: rgba(199,139,255,0.8);
      /*opacity:0;*/
      /*visibility:hidden;*/
    }
        .lang-btn:hover {
      background: rgba(199,139,255,0.8);
      border-color: rgba(199,139,255,0.9);
      box-shadow: 0 0 16px rgba(199,139,255,0.6);
            transition: all 0.2s ease;
    }
  /* Global layout */
  .page-nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}


.page-nav.nav-scrolled {
  background: rgba(9, 2, 24, 0.9); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}


  .page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px 80px;
  }

  /* NAVBAR */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-left {
    font-weight: 700;
    letter-spacing: 0.18em;
    font-size: 0.9rem;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.95rem;
    color: var(--text-muted);
  }
  .nav-links a {
    position: relative;
    text-transform: lowercase;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transition: width 0.25s ease;
  }
  .nav-links a:hover::after {
    width: 100%;
  }

  /* HERO */
  .hero {
    position: relative;
    padding: 40px 40px 60px;
    background:radial-gradient(circle at top left, rgba(242, 210, 255, 0.2), transparent 45%), radial-gradient(circle at 75% 0, #160e22, transparent 55%), radial-gradient(circle at bottom right, rgba(25, 118, 210, 0.45), transparent 45%), #090010;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
  align-items: center;
  justify-content: space-around;
  }

  .hero::before,
  .hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.7;
    pointer-events: none;
  }
  .hero::before {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(248, 227, 255, 0.95), transparent 65%);
    bottom: -60px;
    right: 40px;
  }
  .hero::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(122, 94, 255, 0.9), transparent 70%);
    top: -60px;
    left: 40px;
  }

  .hero-left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
  }
  .hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
  }
  .hero-subtitle .span {
    color: var(--accent);
    font-weight: 600;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
  }
  .hero-text {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
    color: var(--text-muted);
  }

  .hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn {
    position: relative;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid var(--button-border);
    background: var(--button-bg);
    color: var(--accent-soft);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  }
  .btn-contact {
      margin-right: 40px;
  }
  .btn-primary {
    background: linear-gradient(135deg, rgba(199, 139, 255, 0.35), rgba(107, 90, 255, 0.9));
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  }
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    background: linear-gradient(135deg, rgba(199, 139, 255, 0.55), rgba(107, 90, 255, 1));
  }

  .hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .orbital {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%),
                radial-gradient(circle at 70% 80%, rgba(106, 90, 255, 0.8), transparent 60%),
                rgba(7, 0, 26, 0.9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
    overflow: visible;
    animation: breathe 6s ease-in-out infinite;
    }
    
    @keyframes breathe {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); } 
    100% { transform: scale(1); }
    }

  .orbital-ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(199, 139, 255, 0.6);
    opacity: 0.7;
  }
  .orbital-ring:nth-child(2) {
    inset: -34px;
    opacity: 0.35;
  }
  .orbital-dot {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, #ffe7ff, #ff9fff);
    top: 10px;
    box-shadow: 0 0 18px rgba(255, 159, 255, 0.9);
  }
  .floating-shape {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 214, 255, 0.75);
    bottom: 0;
    right: -50px;
    animation: float 2s ease-in-out infinite alternate;
  }
  @keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0.1; }
    100% { transform: translateY(-2px) translateX(6px); opacity: 1; }
  }
/* highlight koji se vrti po kugli */
.orbital-light {
position: absolute;
inset:-2px;
border-radius: 50%;
/* “fleka” svetla pomerena na desnu stranu */
background: radial-gradient(circle at 90% 10%,
  rgba(255, 235, 255, 0.415) 0%,
  rgba(154, 100, 154, 0.35) 12%,
  transparent 45%);
mix-blend-mode: screen;      /* pomeša se sa podlogom kao svetlo */
opacity: 0.9;
pointer-events: none;
animation: orbit-rotate 10s linear infinite; /* ista animacija kao za orbit */
}

/* orbit za dot (već imaš, samo da se podsetimo) */
.orbital-orbit {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
animation: orbit-rotate 10s linear infinite;
}

/* dot pomeren iz centra – radius orbite */
.orbital-dot {
width: 14px;
height: 14px;
border-radius: 999px;
background: radial-gradient(circle, #ffe7ff, #ff9fff);
box-shadow: 0 0 18px rgba(255, 159, 255, 0.9);
transform: translateX(110px); /* mora da ostane */
}

/* rotacija oko ose – koristi se i za light i za orbit */
@keyframes orbit-rotate {
from { transform: rotate(0deg); }
to   { transform: rotate(360deg); }
}

.orbital-logo {
position: absolute;
inset: 0;
margin: auto;
width: 60%;
height: 60%;
object-fit: contain;
filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
animation: logo-breathe 5s ease-in-out infinite;
}

@keyframes logo-breathe {
0% {
  transform: scale(1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}
50% {
  transform: scale(1.06); 
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.9));
}
100% {
  transform: scale(1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}
}


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

  .mini-x {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-right: 2px solid rgba(157, 110, 255, 0.9);
    border-left: 2px solid rgba(157, 110, 255, 0.9);
    border-top: 2px solid rgba(157, 110, 255, 0.9);
    border-bottom: 2px solid rgba(157, 110, 255, 0.9);
    opacity: 0.75;
  }
  .mini-x.one { top: 22%; left: 63%; }
  .mini-x.two { bottom: 16%; left: 48%; }

  .chevrons {
    position: absolute;
    right: 18%;
    top: 26%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0.75;
  }
  .chevrons span {
    width: 6px;
    height: 10px;
    border-left: 2px solid rgba(137, 114, 255, 0.85);
    border-bottom: 2px solid rgba(137, 114, 255, 0.85);
    transform: rotate(-45deg);
  }

.device-section {
margin: 120px 0;
display: grid;
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
gap: 40px;
align-items: center;
}

.device-text {
max-width: 620px;
}

.device-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
min-height: 260px;
}

.device-glow {
position: absolute;
width: 360px;
height: 220px;
border-radius: 50%;
background:
  radial-gradient(circle at 50% 0%, rgba(255, 230, 255, 0.7), transparent 60%),
  radial-gradient(circle at 10% 80%, rgba(130, 120, 255, 0.55), transparent 60%),
  radial-gradient(circle at 90% 80%, rgba(40, 130, 255, 0.5), transparent 60%);
filter: blur(18px);
opacity: 0.9;
}

.device-laptop {
position: relative;
width: 320px;
transform-style: preserve-3d;
animation: device-float 7s ease-in-out infinite;
}

.device-screen {
position: relative;
width: 100%;
height: 190px;
border-radius: 18px;
background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 60%),
            #070013;
border: 1px solid rgba(210, 190, 255, 0.6);
box-shadow:
  0 20px 50px rgba(0, 0, 0, 0.7),
  0 0 30px rgba(190, 150, 255, 0.3);
overflow: hidden;
}

.device-screen-gradient {
position: absolute;
inset: -20%;
background:
  radial-gradient(circle at 20% 20%, rgba(255, 240, 255, 0.7), transparent 55%),
  radial-gradient(circle at 80% 80%, rgba(110, 90, 255, 0.9), transparent 60%),
  radial-gradient(circle at 10% 80%, rgba(40, 120, 255, 0.7), transparent 60%);
filter: blur(2px);
}

.device-screen-ui {
position: relative;
z-index: 1;
inset: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 18px 20px;
gap: 8px;
}

.device-screen-ui span {
display: block;
height: 6px;
border-radius: 999px;
background: linear-gradient(90deg, rgba(255, 240, 255, 0.7), rgba(160, 120, 255, 0.9));
opacity: 0.85;
}
.device-screen-ui span:nth-child(2) {
width: 70%;
opacity: 0.65;
}
.device-screen-ui span:nth-child(3) {
width: 45%;
opacity: 0.5;
}

.device-base {
position: relative;
margin: 12px auto 0;
width: 100%;
height: 14px;
border-radius: 999px;
background: linear-gradient(90deg, #140b33, #1f123f);
border: 1px solid rgba(190, 160, 255, 0.5);
box-shadow:
  0 6px 18px rgba(0, 0, 0, 0.8),
  0 0 18px rgba(140, 110, 255, 0.7);
}

.device-shadow {
position: absolute;
left: 50%;
bottom: -16px;
transform: translateX(-50%);
width: 70%;
height: 24px;
border-radius: 50%;
background: radial-gradient(circle, rgba(0, 0, 0, 0.6), transparent 70%);
filter: blur(4px);
opacity: 0.85;
}

@keyframes device-float {
0%   { transform: translateY(0) scale(1); }
50%  { transform: translateY(-10px) scale(1.02); }
100% { transform: translateY(0) scale(1); }
}

  section {
    margin: 120px 0;
  }
  .section-title {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    color: var(--accent-soft);
    margin-bottom: 10px;
  }
  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .section-text {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .section-text b{
      color: var(--accent-soft);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 34px;
  }
  .feature-card {
    position: relative;
    padding: 22px 20px 24px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(199, 139, 255, 0.22), transparent 55%),
                rgba(7, 1, 28, 0.85);
    border: 1px solid rgba(155, 120, 255, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  .feature-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 255, 0.2), transparent 60%);
    top: -40px;
    right: -20px;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .feature-card:hover::after {
    opacity: 1;
  }
  .feature-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .feature-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Pricing */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 28px;
  }
  .price-card {
    padding: 28px 22px 26px;
    border-radius: 18px;
    background: radial-gradient(circle at 0 0, rgba(199, 139, 255, 0.2), transparent 50%),
                rgba(7, 0, 24, 0.9);
    border: 1px solid rgba(160, 125, 255, 0.7);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .price-name {
    font-weight: 600;
    font-size: 1rem;
  }
  .price-value {
    font-size: 1.8rem;
    margin-top: 6px;
  }
  .price-value span {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  .price-list {
    list-style: none;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  .price-list li + li {
    margin-top: 6px;
  }
  .price-cta {
    margin-top: 18px;
    align-self: flex-start;
  }

  .contact-card {
    margin-top: 30px;
    padding: 26px 22px;
    border-radius: 18px;
    border: 1px solid rgba(129, 110, 255, 0.5);
    background: linear-gradient(135deg, rgba(18, 4, 58, 0.95), rgba(7, 0, 20, 0.98));
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
  }
  .contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 840px;
  }

  footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    justify-content: space-between;
    gap: 10px;
  }
  footer span {
  display: flex;
  align-items: center;
  }
.mobile-show {display:none;}
  @media (max-width: 900px) {
      .device-section {
          grid-template-columns: 1fr;
      }
      .device-wrapper {
          order: -1;
      }
    .hero {
      grid-template-columns: 1fr;
      padding: 32px 24px 46px;
    }
    .hero-right {
      order: -1;
      padding-bottom: 10px;
    }
    .nav-links {
      gap: 18px;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 600px) {
      .mobile-show {display:block!important;}
      .mobile-hide{
          display:none!important;
      }
    .nav {
      gap: 12px;
    }
    .nav a,  .nav span {
        font-size: 20px;
        display:none;
    }
    .nav-links {
    width: 75%;
    justify-content: flex-end;
    }
    .hero {
      padding: 120px 24px 80px;
      flex-flow: column;
    }
    .hero-text {
      max-width: 100%;
    }
    .contact-card {
      flex-direction: column;
      align-items: flex-start;
    }
    .orbital {
    width: 340px;
    height: 340px;
    }
    footer {
    display: flex;
    flex-wrap: wrap;
      flex-flow: column;
      align-items: center;
  }
  }