: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;
  }
  body.loading { overflow: hidden; }

  /* ── Background canvas ── */
  #bgCanvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Preloader ── */
  .preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #090218;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .preloader.exit {
    opacity: 0;
    pointer-events: none;
  }

  .preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    animation: preloader-appear 0.5s ease forwards;
  }

  @keyframes preloader-appear {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }

  .preloader-logo {
    width: 200px;
    animation: preloader-breathe 2s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(199, 139, 255, 0.5));
  }

  @keyframes preloader-breathe {
    0%, 100% {
      filter: drop-shadow(0 0 16px rgba(199,139,255,0.35));
      transform: scale(1);
    }
    50% {
      filter: drop-shadow(0 0 36px rgba(199,139,255,0.8));
      transform: scale(1.04);
    }
  }

  .preloader-dots {
    display: flex;
    gap: 10px;
  }
  .preloader-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
    animation: dot-pulse 1.2s ease-in-out infinite;
  }
  .preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
  .preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

  @keyframes dot-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.4); }
  }

  /* ── Hero entrance animations ── */
  .hero-anim {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--d, 0s);
  }
  body.ready .hero-anim {
    opacity: 1;
    transform: translateY(0);
  }

  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;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid rgba(155, 120, 255, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  }
  .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;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 28px;
padding: 48px 40px;
backdrop-filter: blur(8px);
box-shadow:
  inset 0 1px 0 rgba(255,255,255,0.06),
  0 24px 60px rgba(0,0,0,0.35);
}

.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 {
    position: relative;
    padding: 28px 22px 26px;
    border-radius: 18px;
    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 45px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
  }
  .price-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;
  }
  .price-card:hover::after {
    opacity: 1;
  }
  .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; }
    .hero {
      padding: 120px 24px 80px;
      flex-flow: column;
    }
    .hero-text { max-width: 100%; }
    .contact-card {
      flex-direction: column;
      align-items: flex-start;
    }
    .orbital { width: 280px; height: 280px; }
    footer {
      flex-flow: column;
      align-items: center;
    }
  }

/* ── Scroll margin for fixed nav ── */
section, main { scroll-margin-top: 90px; }

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-soft);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-sep { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 36px 20px;
    background: rgba(9, 2, 24, 0.97);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    z-index: 98;
  }
  .nav-links.open { display: flex; }
}

/* ── Process section ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

/* connecting line across all steps */
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(14px + 1px);
  right: calc(14px + 1px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(199,139,255,0.5) 10%,
    rgba(199,139,255,0.5) 90%,
    transparent 100%);
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: 0 16px;
  padding-top: 64px;
}

/* number badge */
.process-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(199,139,255,0.3), rgba(107,90,255,0.15));
  border: 1px solid rgba(199,139,255,0.45);
  box-shadow: 0 0 20px rgba(199,139,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-soft);
  animation: process-pulse 2.8s ease-in-out infinite;
}

.process-step:nth-child(2) .process-number { animation-delay: 0.4s; }
.process-step:nth-child(3) .process-number { animation-delay: 0.8s; }
.process-step:nth-child(4) .process-number { animation-delay: 1.2s; }

@keyframes process-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(199,139,255,0.5), 0 0 16px rgba(199,139,255,0.2);
    border-color: rgba(199,139,255,0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(199,139,255,0), 0 0 28px rgba(199,139,255,0.45);
    border-color: rgba(199,139,255,0.9);
  }
}

.process-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  text-align: center;
}

.process-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .process-grid::before { display: none; }
  .process-step { padding-top: 72px; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-step { padding-top: 0; padding-left: 72px; min-height: 56px; }
  .process-number {
    left: 0;
    top: 0;
    transform: none;
  }
  .process-title, .process-text { text-align: left; }
}

/* ── Active nav link ── */
.nav-links a.nav-active {
  color: var(--accent-soft);
}
.nav-links a.nav-active::after {
  width: 100%;
}

/* ── Capabilities strip ── */
.cap-strip {
  margin: 80px 0;
  text-align: center;
}
.cap-strip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  opacity: 0.6;
  margin-bottom: 28px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(199,139,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(199,139,255,0.08);
}
.cap-item {
  padding: 22px 16px;
  background: rgba(7, 1, 28, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: default;
}
.cap-item:hover {
  background: rgba(199,139,255,0.1);
  color: var(--accent-soft);
}
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-item { padding: 16px 12px; font-size: 0.84rem; }
}

/* ── Contact form ── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  padding: 40px;
}
.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 24px;
}
.contact-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(199,139,255,0.4), transparent);
  margin: 8px 0;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.contact-email-link:hover { opacity: 1; }
.contact-glow {
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,139,255,0.12), transparent 70%);
  pointer-events: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field { position: relative; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: none;
  border-bottom: 1px solid rgba(199,139,255,0.3);
  border-radius: 0;
  padding: 12px 4px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease;
}
.form-input::placeholder { color: rgba(165,144,208,0.5); }
.form-input:focus { border-bottom-color: var(--accent); }
.form-field::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.3s ease;
}
.form-field:focus-within::after { width: 100%; }
.form-textarea {
  resize: none;
  min-height: 120px;
  border: none;
  border-bottom: 1px solid rgba(199,139,255,0.3);
  padding: 12px 4px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-status {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}
.form-status.success { color: #7fffb0; }
.form-status.error   { color: #ff8fa3; }

@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .contact-info { padding-right: 0; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-linkedin {
  color: var(--text-muted);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.footer-linkedin:hover { color: var(--accent-soft); }

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(199,139,255,0.4);
  background: rgba(9,2,24,0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 0 18px rgba(199,139,255,0.4);
  border-color: rgba(199,139,255,0.8);
}