:root {
  --bg: #08090d;
  --bg-soft: #10121a;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f6fb;
  --muted: #a7adbd;
  --accent: #7c5cff;
  --accent-2: #00d4ff;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(124, 92, 255, 0.28), transparent 34%), radial-gradient(circle at 85% 12%, rgba(0, 212, 255, 0.18), transparent 28%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 35px 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 50px rgba(124, 92, 255, 0.33);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(124, 92, 255, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.35rem;
}

.hero {
  padding-top: 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce2ff;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 9px 14px;
  margin-bottom: 24px;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #37ff9b;
  box-shadow: 0 0 20px rgba(55, 255, 155, 0.7);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  max-width: 850px;
  margin-bottom: 28px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.18rem;
  max-width: 660px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: 20px;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 22px;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.45), transparent 35%);
  animation: floatGlow 7s ease-in-out infinite alternate;
}

.browser-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, .24);
  border-radius: 18px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.preview-card {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(8, 9, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, .12);
}

.preview-card p {
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 10px;
}

.preview-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  min-height: 76px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124, 92, 255, .32), rgba(0, 212, 255, .16));
  border: 1px solid rgba(255, 255, 255, .1);
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(16px);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.floating-card.one {
  left: 24px;
  bottom: 48px;
}

.floating-card.two {
  right: 24px;
  bottom: 118px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
}

.stats-grid div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .05);
}

.stats-grid strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.stats-grid span {
  color: var(--muted);
}

.section-head {
  max-width: 830px;
  margin-bottom: 36px;
}

.section-label {
  color: var(--accent-2);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.muted,
.service-card p,
.project-body p,
.price-card p,
.timeline p,
.cta-box p {
  color: var(--muted);
}

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

.service-card,
.price-card,
.project-card,
.cta-box,
.contact-form,
.process-wrap {
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card,
.price-card {
  padding: 30px;
  min-height: 280px;
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  background: rgba(124, 92, 255, .18);
  color: var(--accent-2);
  font-weight: 900;
}

.service-card h3,
.price-card h3 {
  margin-bottom: 12px;
}

.work {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .035), transparent);
}

.work-slider {
  position: relative;
}

.slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.slider-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
}

.slider-window {
  overflow: hidden;
}

.work-track {
  display: flex;
  gap: 20px;
  transition: transform .45s ease;
  will-change: transform;
}

.project-card {
  overflow: hidden;
  flex: 0 0 calc((100% - 40px) / 3);
}

.project-image {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}

.project-image span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 800;
}

.gradient-a {
  background-image: url("images/bocevica.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}

.gradient-b {
  background-image: url("images/grejanje.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}

.gradient-c {
  background-image: url("images/visnja.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}

.gradient-d {
   background-image: url("images/insajder.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}
.gradient-e {
   background-image: url("images/foto.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}
.gradient-f {
   background-image: url("images/amss1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #3150a3;
}
.project-body {
  padding: 26px;
}

.project-body h3 {
  margin-bottom: 10px;
}

.project-body ul {
  margin-top: 18px;
  display: grid;
  gap: 9px;
  color: #dce2ff;
}

.project-body li::before,
.price-card li::before {
  content: "✓";
  color: var(--accent-2);
  margin-right: 8px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .24);
  cursor: pointer;
  transition: .25s ease;
}

.slider-dot.active {
  width: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.process-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 34px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
}

.timeline strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 6px;
}

.price-card .price {
  font-size: 2rem;
  color: white;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 12px 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: #dce2ff;
}

.featured {
  position: relative;
  background: linear-gradient(145deg, rgba(124, 92, 255, .22), rgba(255, 255, 255, .06));
  transform: translateY(-12px);
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 255, .16);
  color: var(--accent-2);
  font-weight: 900;
  font-size: .82rem;
}

.final-cta {
  padding-top: 40px;
}

.cta-box {
  padding: clamp(32px, 7vw, 70px);
  text-align: center;
  background: radial-gradient(circle at top, rgba(124, 92, 255, .28), transparent 45%), var(--card);
}

.cta-box h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-info a {
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #dce2ff;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .2);
  color: white;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, .08);
}

textarea {
  resize: vertical;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 28px 0;
  color: var(--muted);
}

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

.footer a {
  color: white;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .22s;
}

@keyframes floatGlow {
  from {
    transform: translate(-4%, -2%);
  }

  to {
    transform: translate(6%, 4%);
  }
}

@media (max-width: 980px) {
  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(16, 18, 26, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .process-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 460px;
  }

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

  .project-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-row,
  .cards-grid,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .slider-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    flex-basis: 100%;
  }

  .hero-card {
    min-height: 390px;
    padding: 16px;
  }

  .floating-card {
    font-size: .85rem;
  }

  .floating-card.one {
    bottom: 28px;
    left: 16px;
  }

  .floating-card.two {
    bottom: 82px;
    right: 16px;
  }

  .preview-card {
    padding: 22px;
  }

  .mini-grid span {
    min-height: 54px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hidden-field {
  display: none !important;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
}

.lang-btn.active {
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.success-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(12px);
}

.success-popup.active {
  display: flex;
}

.success-popup-card {
  width: min(100%, 420px);
  position: relative;
  text-align: center;
  border: 1px solid var(--card-border);
  background: var(--bg-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 26px;
}

.success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
}

.success-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 900;
  font-size: 1.7rem;
}

.success-popup-card h3 {
  margin-bottom: 8px;
}

.success-popup-card p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .lang-switch {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
  }
}