body {
    overflow-x: clip;
}

html {
    overflow-x: visible !important;
}

/* Custom selection color */
::selection {
    background: #38bdf8; /* tvoja aqua / cyan */
    color: #0b1120;      /* tamna boja teksta preko selekcije */
}

/* za Firefox */
::-moz-selection {
    background: #38bdf8;
    color: #0b1120;
}

/* ====== CUSTOM SCROLLBAR ====== */

/* Za Chrome, Edge, Opera */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b1120;              /* tamna pozadina */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #38bdf8,
        #22d3ee
    );
    border-radius: 10px;
    border: 2px solid #0b1120;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #5ef3ff,
        #38bdf8
    );
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #38bdf8 #0b1120;
}

/* GLOBAL MOBILE PADDING */
@media (max-width: 768px) {
    .container,
    section,
    header,
    footer,
    .site-footer,
    .site-header {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 900px) {
    * {
        max-width: 100% !important;
    }
    .orbit-1, .orbit-2, .orbit-3, .orbit-4 {
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    html, body {
        overflow-x: hidden !important;
    }
}

:root {
    --color-bg: #0A0D14;       /* tamna pozadina */
    --color-primary: #0F62FE;  /* plava */
    --color-accent: #15A8FF;   /* svetlija plava */
    --color-white: #ffffff;
    --color-light: #c7c7c7;
}

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

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--color-bg);
    color: var(--color-white);
}

/* ======================================================
   ZEVIONDIGITAL HYPER-PREMIUM INTRO
====================================================== */

#zd-intro {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0b0f1c 0%, #04060b 90%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 999999;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease, transform 1s ease;
}

/* PARTICLES CANVAS */
#zd-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* LOGO */
.zd-intro-logo {
    position: relative;
    font-size: 58px;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -1px;
    text-shadow: 0 0 24px rgba(94, 234, 212, 0.4);
    opacity: 0;
    transform: translateY(25px) scale(0.9);
    animation: zdLogoIn 1.2s ease-out forwards 0.4s;
}

.zd-intro-logo img {
    mix-blend-mode: lighten;
}

/* line sweep */
.zd-line-sweep {
    position: absolute;
    top: 0;
    left: -130%;
    width: 80%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: zdSweep 1.3s ease-out 1s forwards;
    transform: skewX(-20deg);
}

/* fog overlay */
#zd-intro::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
    filter: blur(40px);
    opacity: 0;
    animation: fogIn 1.4s ease-out 0.3s forwards;
}

/* grain texture */
#zd-intro::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    opacity: 0.07;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: noisePulse 2.8s infinite ease-in-out;
}

/* ======================
     ANIMATIONS
=======================*/

@keyframes zdLogoIn {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.9);
    }
    70% {
        opacity: 1;
        transform: translateY(0) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zdSweep {
    0% { left: -140%; }
    100% { left: 160%; }
}

@keyframes fogIn {
    0% { opacity: 0; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes noisePulse {
    0% { opacity: 0.06; }
    50% { opacity: 0.1; }
    100% { opacity: 0.06; }
}

@keyframes zdFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.12); }
}

/* STANJE KAD SE INTRO GASI */
#zd-intro.intro-hide {
    animation: zdFadeOut 0.9s ease forwards;
}

/* ============================================
   SMOOTH PAGE FADE IN POSLE INTRO-A
============================================ */

body.intro-active main,
body.intro-active header,
body.intro-active footer {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    filter: blur(8px);
    transition:
        opacity 0.9s ease-out,
        transform 0.9s ease-out,
        filter 0.9s ease-out;
}

body.intro-finished main,
body.intro-finished header,
body.intro-finished footer {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* SAMO GAŠENJE INTRO-A */

#zd-intro.intro-hide {
    animation: zdFadeOut 1.2s ease-in-out forwards;
}

/* Ako želiš malko mekši fade-out, malo izmeni keyframe: */

@keyframes zdFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}


/* ========== GLOBAL BUBBLES (subtle dots) ========== */

.zd-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* osnovni mehurić – mali, diskretan */

.zd-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(59,130,246,0.55), transparent 65%);
    opacity: 0.15;
    filter: blur(6px);
    box-shadow: 0 0 30px rgba(37,99,235,0.35);
    transition: transform 0.9s ease-out;
}

/* pojedinačni mehurići – različite pozicije / veličine */

.zd-orb.orb-1 {
    width: 110px;
    height: 110px;
    top: 12%;
    left: 18%;
}

.zd-orb.orb-2 {
    width: 90px;
    height: 90px;
    top: 65%;
    left: 10%;
    opacity: 0.12;
}

.zd-orb.orb-3 {
    width: 140px;
    height: 140px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle at 40% 40%, rgba(56,189,248,0.55), transparent 65%);
}

.zd-orb.orb-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 32%;
    opacity: 0.13;
}

/* još suptilnije na mobilnom */

@media (max-width: 768px) {
    .zd-orb {
        opacity: 0.10;
        filter: blur(8px);
    }

    .zd-orb.orb-1,
    .zd-orb.orb-2,
    .zd-orb.orb-3,
    .zd-orb.orb-4 {
        width: 80px;
        height: 80px;
    }
}


/* ============================
   HEADER & NAVIGATION
============================ */
   .site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background .25s ease, box-shadow .25s ease;
}

/* Neon glow linija ispod header-a */
.site-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(21,168,255,0) 0%,
        rgba(21,168,255,0.45) 50%,
        rgba(21,168,255,0) 100%
    );
    box-shadow: 0 0 22px rgba(21,168,255,0.35);
    pointer-events: none;
}

/* header shadow on scroll */
.site-header.scrolled {
    background: rgba(3, 5, 12, 0.95);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo img {
    height: 80px;
    width: auto;
    display: block;
    transition: opacity .25s ease;
}

.logo img:hover {
    opacity: .8;
}

/* ============================
      DESKTOP NAV
   ============================ */
.main-nav {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 0;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    position: relative;
    transition: color .25s ease;
}

/* underline anim – smooth, wider, better */
.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    transform: translateX(-50%);
    transition: width .3s ease;
}

.nav-menu li a:hover {
    color: var(--color-accent);
}

.nav-menu li a:hover::after {
    width: 70%;
}

/* Active item */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #fff;
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    width: 70%;
}

/* ============================
      BURGER BUTTON
   ============================ */

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}

/* premium cross animation */
.burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================
      MOBILE NAV
   ============================ */

@media (max-width: 900px) {

    .burger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(5, 8, 15, 0.92);
        backdrop-filter: blur(14px);
        padding: 20px 0 26px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        border-top: 1px solid rgba(255,255,255,0.06);
        transform-origin: top;
    }

    /* slide down animation */
    .main-nav.active {
        display: flex;
        animation: menuSlide .28s cubic-bezier(.4,0,.2,1) forwards;
    }

    @keyframes menuSlide {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .nav-menu li a {
        font-size: 15px;
        letter-spacing: 0.18em;
    }

    /* no underline on mobile */
    .nav-menu li a::after {
        display: none;
    }
}


/* ============================
   FOOTER
============================ */

.site-footer {
    background: #030305;
    border-top: 1px solid #1f1f28;
    padding: 40px 0 30px;
    margin-top: 80px;
}


.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 26px;
    font-size: 13px;
}

/* GORNJI RED */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #fff;
}

.footer-tagline {
    margin: 0;
    font-size: 13px;
    color: var(--color-light);
    line-height: 1.5;
}

/* NAVIGACIJA */

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-nav a {
    color: var(--color-light);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

/* DONJI RED */

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-copy {
    margin: 0;
    color: var(--color-light);
    font-size: 12px;
}

/* SOCIAL IKONICE */

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: var(--color-light);
    font-size: 17px;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-social a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 800px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* ============================
   CTA
============================ */
.cta-primary {
    padding: 100px 0;
}

.cta-primary-card {
    background: radial-gradient(circle at top left, #0b1120, #020617);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.7);
    padding: 40px 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* mala glow linija u pozadini */
.cta-primary-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(59,130,246,0.25), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.cta-primary-content,
.cta-primary-meta {
    position: relative; /* da glow ne utiče na sadržaj */
    z-index: 1;
}

.cta-primary-content {
    flex: 1.6;
}

.cta-primary-meta {
    flex: 1;
    display: grid;
    gap: 16px;
}

.cta-eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #38bdf8;
    margin-bottom: 10px;
}

.cta-primary h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 14px;
}

.cta-text {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 18px;
    max-width: 520px;
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.cta-list li {
    font-size: 15px;
    color: #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.cta-list li::before {
    content: "•";
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    color: #38bdf8;
}

.cta-primary-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

/* koristiti iste btn klase koje već imaš, ali ako nemaš: */
.cta-primary .btn.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.cta-primary .btn.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

.cta-primary .btn.btn-ghost {
    background: rgba(15, 23, 42, 0.7);
    color: #e5e7eb;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.6);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.cta-primary .btn.btn-ghost:hover {
    background: rgba(30, 64, 175, 0.5);
    border-color: #60a5fa;
    transform: translateY(-1px);
}

.cta-note {
    font-size: 13px;
    color: #9ca3af;
}

/* meta kartice desno */
.cta-meta-item {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    padding: 14px 16px;
}

.cta-meta-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.cta-meta-value {
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
    display: block;
    margin-bottom: 2px;
}

.cta-meta-sub {
    font-size: 13px;
    color: #9ca3af;
}

/* responsive */
@media (max-width: 900px) {
    .cta-primary-card {
        flex-direction: column;
        padding: 28px 22px;
    }

    .cta-primary {
        padding: 70px 0;
    }
}

/* ============================
   FAQ SECTION
============================ */

.faq {
    padding: 120px 0;
}

.faq-inner {
    max-width: 980px;
    margin: 0 auto;
}

.faq-header {
    margin-bottom: 18px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 8px;
}

.faq-subtitle {
    font-size: 15px;
    color: #9ca3af;
    max-width: 520px;
}

.faq-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.faq-pill {
    font-size: 12px;
    color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: radial-gradient(circle at top left, rgba(56,189,248,0.25), rgba(15,23,42,0.9));
}

/* track + cards */

.faq-track {
    position: relative;
    padding-left: 32px;
}

/* vertikalna neon linija */
.faq-track::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, #38bdf8, transparent 45%, #22c55e, transparent 80%);
    opacity: 0.6;
}

/* svetleće tačke na liniji (vizualno) */
.faq-track::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #38bdf8, transparent 60%);
    box-shadow: 0 0 18px rgba(56,189,248,0.9);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    position: relative;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.98), rgba(2,6,23,0.96));
    border: 1px solid rgba(148,163,184,0.4);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,0.7);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease, background 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.9);
}

.faq-item.is-open {
    border-color: #38bdf8;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.20), rgba(2,6,23,0.98));
}

/* content */

.faq-toggle {
    width: 100%;
    padding: 16px 18px 14px 18px;
    border: none;
    background: transparent;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;        
    gap: 18px;
    cursor: pointer;
}

.faq-toggle-main {
    display: grid;
    grid-template-columns: auto 1fr; 
    column-gap: 14px;
    align-items: start;             
}

.faq-index {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #38bdf8, #0b1120);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(56,189,248,0.75);
    margin: 0;                    
}

.faq-q-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0;    
    align-items: flex-start;                   
}

.faq-q-block h3 {
    margin: 0;
    padding: 0;
    line-height: 1.35;
    font-size: 16px;
    color: #f9fafb;
}

.faq-kicker {
    margin: 0;
    padding: 0;
    line-height: 1.25;
    font-size: 13px;
    color: #94a3b8;
}

/* chevron */

.faq-chevron {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.faq-chevron::before,
.faq-chevron::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: #e5e7eb;
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-chevron::before {
    transform: rotate(45deg) translate(1px, 1px);
}

.faq-chevron::after {
    transform: rotate(-45deg) translate(-1px, 1px);
}

.faq-item.is-open .faq-chevron {
    border-color: #38bdf8;
    background: rgba(15,23,42,0.95);
    transform: rotate(90deg);
}

.faq-item.is-open .faq-chevron::before,
.faq-item.is-open .faq-chevron::after {
    background: #38bdf8;
}

/* answer */

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-body p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.7;
    margin: 0 0 14px;
}

.faq-item.is-open .faq-body {
    padding-bottom: 14px;
    max-height: 300px; /* dovoljno za 2–3 pasusa */
}

/* responsive */

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }

    .faq-inner {
        max-width: 100%;
    }

    .faq-track {
        padding-left: 24px;
    }

    .faq-track::before {
        left: 8px;
    }

    .faq-track::after {
        left: 4px;
    }

    .faq-header h2 {
        font-size: 28px;
    }
}


/* ============================
   HERO SECTION
============================ */

.hero::before {
    content: "";
    position: absolute;
    inset: -10%;
    background: 
        radial-gradient(circle at 20% 15%, rgba(0,122,255,0.25), transparent 65%),
        radial-gradient(circle at 80% 30%, rgba(0,189,255,0.20), transparent 70%),
        radial-gradient(circle at 40% 75%, rgba(0,80,255,0.16), transparent 70%);
    mix-blend-mode: screen;
    filter: blur(80px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.hero-left::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -60px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(21,168,255,0.25), transparent 70%);
    filter: blur(85px);
    opacity: 0.7;
    z-index: -1;
}
.hero-left { position: relative; }

.hero-right::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,122,255,0.25), transparent 70%);
    filter: blur(110px);
    opacity: 0.55;
    z-index: -1;
}
.hero-right { position: relative; transform: translateY(-30px); }

.hero-logo-card {
    background: rgba(6,12,25,0.6);
    backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 60px rgba(0,122,255,0.35),
        0 0 160px rgba(0,122,255,0.25),
        0 25px 55px rgba(0,0,0,0.85);
}

.hero-logo-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    filter: blur(6px);
    animation: heroGlare 3.8s ease-in-out 1.2s infinite;
    pointer-events: none;
}
@keyframes heroGlare {
    0%   { left: -120%; opacity: 0; }
    45%  { opacity: 1; }
    100% { left: 140%; opacity: 0; }
}

.hero-float {
    animation: heroFloat 7s ease-in-out infinite;
    backdrop-filter: blur(18px) saturate(180%);
}
@keyframes heroFloat {
    0%   { transform: translateY(0px) translateX(0px); }
    50%  { transform: translateY(-12px) translateX(6px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-inner { z-index: 2; }

#zd-hero-sparks {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45; 
}


.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

/* suptilan glow u pozadini hero-a */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.18), transparent 55%);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
    opacity: 0.03; /* suuuuper suptilno */
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* LEVA STRANA – TEKST */

.hero-left {
    flex: 1;
    position: relative;
}

.hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.hero-title {
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 18px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--color-light);
    margin: 0 0 28px;
    max-width: 500px;
}

/* DUGMAD */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--color-white);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(15, 98, 254, 0.08);
}

/* HERO STATS / BENEFITI ISPOD DUGMETA */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.hero-stats li {
    font-size: 13px;
    color: var(--color-light);
    padding-right: 18px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.hero-stats li:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-stats li span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

/* DESNA STRANA – LOGO KARTICA */

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    transform: translateY(-25px);
}

.hero-logo-card {
    position: relative;
    width: 360px;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(21,168,255,0.5), transparent 55%),
                radial-gradient(circle at bottom right, rgba(15,98,254,0.6), transparent 55%),
                #050811;
    box-shadow: 0 25px 60px rgba(0,0,0,0.75);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    inset: 10%;
    border-radius: 22px;
    background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-logo-card img {
    position: relative;
    max-width: 80%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.8));
    mix-blend-mode: lighten;
}

@media screen and (max-width: 520px) {
    .hero-logo-card {
        display: none;
    }
}

/* FLOATING BADGE KARTICE OKO LOGA */

.hero-float {
    position: absolute;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(5, 8, 15, 0.95);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 16px 35px rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-light);
}

/* pozicije */

.hero-float-top {
    top: 8%;
    right: 8%;
    animation-delay: 0s;
}

.hero-float-bottom {
    bottom: 4%;
    left: 4%;
    animation-delay: 1.5s;
}

/* lagano “lebdenje” */

@keyframes heroFloat {
    0%   { transform: translateY(0px);   opacity: 0.95; }
    50%  { transform: translateY(-10px); opacity: 1;    }
    100% { transform: translateY(0px);  opacity: 0.95; }
}

/* ORBITA OKO LOGO KARTICE */

.hero-orbit {
    position: absolute;
    width: 420px;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 32px;
    border: 1px solid rgba(21,168,255,0.35);
    opacity: 0.25;
    filter: blur(0.4px);
    transform: scale(1.08);
    box-shadow: 0 0 45px rgba(15,98,254,0.55);
    z-index: 0;
    pointer-events: none;
}

/* RESPONSIVE – sakrij ih na manjim ekranima ako bude gužva */

@media (max-width: 900px) {
    .hero-float {
        display: none;
    }
}

/* HERO RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        padding: 0 18px 80px;
        min-height: unset;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-logo-card {
        width: 280px;
        border-radius: 24px;
    }
}

/* ============================
   CTA FINAL
============================ */

.cta-final {
    padding: 120px 0 110px;
}

.cta-final-inner {
    background: radial-gradient(circle at top left, #0b1120, #020617);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.85);
    padding: 40px 40px 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* blagi glow u pozadini */
.cta-final-inner::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(56,189,248,0.22), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.cta-final-main,
.cta-final-side {
    position: relative;
    z-index: 1;
}

.cta-final-main h2 {
    font-size: 34px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 12px;
}

.cta-final-text {
    font-size: 16px;
    color: #9ca3af;
    max-width: 560px;
    margin-bottom: 22px;
}

.cta-final-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.cta-final-badge {
    font-size: 12px;
    color: #e5e7eb;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15,23,42,0.9);
}

.cta-final-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

/* koristi tvoje postojeće .btn klase, ako ih nemaš: */

.cta-final .btn.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.cta-final .btn.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

.cta-final .btn.btn-ghost {
    background: rgba(15,23,42,0.75);
    color: #e5e7eb;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.6);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.cta-final .btn.btn-ghost:hover {
    background: rgba(30,64,175,0.6);
    border-color: #60a5fa;
    transform: translateY(-1px);
}

.cta-final-note {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px;
}

/* desna strana */

.cta-final-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.cta-final-card {
    background: rgba(15,23,42,0.9);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    padding: 16px 18px;
}

.cta-final-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.cta-final-email {
    font-size: 15px;
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 4px;
}

.cta-final-small {
    font-size: 13px;
    color: #9ca3af;
}

/* stats */

.cta-final-stats {
    display: grid;
    gap: 10px;
}

.cta-final-stat {
    background: rgba(15,23,42,0.9);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 10px 14px;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #e5e7eb;
}

.stat-label {
    font-size: 12px;
    color: #9ca3af;
}

/* responsive */

@media (max-width: 900px) {
    .cta-final {
        padding: 80px 0 70px;
    }

    .cta-final-inner {
        grid-template-columns: 1fr;
        padding: 28px 22px 24px;
        gap: 26px;
    }

    .cta-final-main h2 {
        font-size: 28px;
    }

    .cta-final-side {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-final-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cta-final-stat {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .cta-final-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================
/*   SERVICES PANEL
============================ */

.services-panel {
    padding: 110px 0 130px;
    position: relative;
    overflow-x: hidden;
}

/* Background glow */
.services-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.10), transparent 60%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.12), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.services-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 52px;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

/* ===========================
   LEFT NAV PANEL
=========================== */

.services-nav {
    background: rgba(5, 8, 17, 0.96);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8);
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-nav-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    opacity: 0.9;
    margin-bottom: 6px;
}

.services-nav-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 12px;
    padding: 9px 12px 9px 32px;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    position: relative;
    opacity: 0.75;
    transition:
        color .22s ease,
        background .22s ease,
        transform .22s ease,
        opacity .22s ease;
}

.services-nav-item::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.32);
    transform: translateY(-50%);
    transition: background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.services-nav-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(21,168,255,0.18), rgba(15,98,254,0.26));
    opacity: 0;
    z-index: -1;
    transition: opacity .22s ease;
}

.services-nav-item:hover {
    color: rgba(255,255,255,0.9);
    opacity: 1;
}

.services-nav-item.is-active {
    color: #fff;
    opacity: 1;
    transform: translateX(2px);
}

.services-nav-item.is-active::after {
    opacity: 1;
}

.services-nav-item.is-active::before {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 10px rgba(21,168,255,0.8);
}

/* ===========================
   RIGHT SIDE – SERVICE GROUPS
=========================== */

.services-groups {
    position: relative;
    min-height: 260px;
    overflow-x: hidden;
}

.services-group {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .26s ease-out, transform .26s ease-out;
}

.services-group.is-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   SERVICE CARDS
=========================== */

.service-card {
    position: relative;
    border-radius: 24px;
    background: rgba(10, 14, 22, 0.9);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.6);
    transition:
        transform .35s cubic-bezier(.3,.7,.4,1),
        box-shadow .35s ease,
        border-color .35s ease;
    isolation: isolate;
}

/* Glow behind card */
.service-card::before {
    content: "";
    position: absolute;
    inset: -30px;
    background:
        radial-gradient(circle at 30% 20%, rgba(21,168,255,0.12), transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(15,98,254,0.18), transparent 75%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
}

/* Card inner content */
.service-card-inner {
    position: relative;
    padding: 34px;
    min-height: 190px;
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    padding: 34px;
    transition: opacity .35s ease, transform .35s ease;
}

.service-card-front {
    opacity: 1;
    transform: translateY(0);
}

.service-card-front h3 {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
}

.service-card-front p {
    margin-top: 8px;
    font-size: 15px;
    color: var(--color-light);
}

.service-card-back {
    opacity: 0;
    transform: translateY(25px);
}

/* Hover */
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(21,168,255,0.45);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.75),
        0 0 25px rgba(15,98,254,0.35);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-card-front {
    opacity: 0;
    transform: translateY(-20px);
}

.service-card:hover .service-card-back {
    opacity: 1;
    transform: translateY(0);
}

/* Card icon */
.service-card-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(21,168,255,0.95), rgba(15,98,254,0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #fff;
    box-shadow:
        0 10px 30px rgba(15,98,254,0.4),
        inset 0 0 12px rgba(255,255,255,0.2);
    transition: transform .35s ease, box-shadow .35s ease;
}

.service-card:hover .service-card-logo {
    transform: translateY(-6px);
    box-shadow:
        0 14px 40px rgba(15,98,254,0.55),
        inset 0 0 18px rgba(255,255,255,0.25);
}

/* Tags */
.service-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 999px;
    color: #cfd6e0;
    backdrop-filter: blur(6px);
}

/* ========== RESPONSIVE – SERVICES PANEL ========== */
@media (max-width: 900px) {

    .service-card{
        width: 100%;
        height: 190px;
    }

    .services-panel {
        padding: 80px 0 90px;
    }

    /* iz 2 kolone u 1 kolonu */
    .services-panel-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .services-nav {
        max-width: 420px;
        margin: 0 auto;
    }

    .services-groups {
        min-height: auto;
        overflow: visible;
    }

    /* kartice idu jedna ispod druge */
    .services-group {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .service-card-inner,
    .service-card-front,
    .service-card-back {
        padding: 22px;
        min-height: 0;
    }
}

  

/* ============================
   WHY CHOOSE US – SPLIT LAYOUT
============================ */

.why-choose {
    padding: 140px 0;
    position: relative;
}

.why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.10), transparent 60%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.10), transparent 70%);
    opacity: 0.45;
    pointer-events: none;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */

.why-kicker {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.why-title {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-title span {
    color: var(--color-accent);
}

.why-text {
    font-size: 16px;
    color: var(--color-light);
    margin-bottom: 28px;
}

.why-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.why-points li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--color-white);
    opacity: 0.85;
}

.why-points li span {
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 18px;
}

/* RIGHT SIDE – THREE CARDS */

.why-right {
    display: grid;
    gap: 26px;
}

.why-card {
    padding: 28px;
    border-radius: 20px;
    background: rgba(6, 10, 20, 0.92);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.75);
    transition: .25s ease;
    position: relative;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.40), transparent 65%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.45), transparent 65%);
    opacity: 0;
    transition: .25s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21,168,255,0.35);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: radial-gradient(circle at top left, rgba(21,168,255,0.85), transparent 55%),
                radial-gradient(circle at bottom right, rgba(15,98,254,1), transparent 55%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

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

.why-card p {
    margin: 0;
    font-size: 14px;
    color: var(--color-light);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .why-points li {
        justify-content: center;
    }
}

/* MINI STATISTIKE ISPOD TEKSTA */

.why-stats {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.why-stat {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(5, 8, 17, 0.9);
    font-size: 12px;
    color: var(--color-light);
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.why-stat span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
}

/* 3D / TILT HOVER NA WHY-CARD */

.why-card {
    transform-origin: center;
    transform-style: preserve-3d;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02) rotateX(3deg) rotateY(-3deg);
}

/* SCROLL REVEAL ANIMACIJA */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .45s ease-out, transform .45s ease-out;
}

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

/* responsive tweak da stats lepo stanu */

@media (max-width: 900px) {
    .why-stats {
        justify-content: center;
    }
}

/* ============================
   PORTFOLIO PREVIEW – IMAGE CASES
============================ */

.portfolio-preview {
    padding: 130px 0 140px;
    position: relative;
}

.portfolio-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(21,168,255,0.12), transparent 60%),
        radial-gradient(circle at bottom left, rgba(15,98,254,0.14), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.portfolio-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 60px;
    align-items: flex-start;
    align-items: center;
}

/* LEFT SIDE */

.portfolio-left {
    max-width: 480px;
}

.portfolio-kicker {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.portfolio-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
}

.portfolio-text {
    font-size: 15px;
    color: var(--color-light);
    margin-bottom: 24px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.portfolio-tags span {
    font-size: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(5, 8, 17, 0.92);
    color: rgba(230,230,230,0.9);
}

.portfolio-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

/* RIGHT SIDE – PROJECT LIST */

.portfolio-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* PROJECT CARD */

.project-card {
    border-radius: 22px;
    overflow: hidden;
    background: rgba(5, 8, 17, 0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
    transition:
        transform .3s cubic-bezier(.3,.7,.4,1),
        box-shadow .3s ease,
        border-color .3s ease;
    cursor: pointer;
}

/* IMAGE WRAP */

.project-image-wrap {
    position: relative;
    overflow: hidden;
    max-height: 220px;
}

.project-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .4s ease;
}

/* gradient overlay preko slike */

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,5,10,0.15), rgba(3,5,10,0.85));
    opacity: 1;
    transition: opacity .4s ease;
}

/* CONTENT */

.project-content {
    padding: 18px 20px 18px;
}

.project-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(230,230,230,0.8);
    margin-bottom: 6px;
}

.project-label {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.4);
}

.project-type {
    opacity: 0.8;
}

.project-title {
    font-size: 18px;
    margin: 4px 0 6px;
}

.project-desc {
    font-size: 13px;
    color: var(--color-light);
    margin: 0 0 10px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.project-tags span {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(5, 8, 17, 0.92);
    color: rgba(230,230,230,0.9);
}

.project-link {
    font-size: 13px;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
    transition: opacity .2s ease, transform .2s ease;
}

.project-link span {
    transition: transform .2s ease;
}

/* HOVER EFEKTI */

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21,168,255,0.5);
    box-shadow:
        0 26px 60px rgba(0,0,0,0.95),
        0 0 26px rgba(15,98,254,0.4);
}

.project-card:hover .project-image {
    transform: scale(1.07);
}

.project-card:hover .project-image-overlay {
    opacity: 0.7;
}

.project-card:hover .project-link {
    opacity: 1;
    transform: translateY(-1px);
}

.project-card:hover .project-link span {
    transform: translateX(3px);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .portfolio-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-left {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .portfolio-preview {
        padding: 90px 0 110px;
    }

    .project-image-wrap {
        max-height: 200px;
    }
}

/* ============================
   PROJECT LIGHTBOX
============================ */

.project-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.project-lightbox.is-open {
    display: flex;
}

.plb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.plb-inner {
    position: relative;
    max-width: 1100px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plb-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.9);
    border: 1px solid rgba(255,255,255,0.12);
}

/* arrows */

.plb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: rgba(5, 8, 17, 0.9);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    transition: background .2s ease, transform .2s ease;
    z-index: 2;
}

.plb-prev { left: -50px; }
.plb-next { right: -50px; }

.plb-arrow:hover {
    background: var(--color-primary);
    transform: translateY(-50%) scale(1.05);
}

/* close button */

.plb-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: rgba(5, 8, 17, 0.95);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    transition: background .2s ease, transform .2s ease;
    z-index: 2;
}

.plb-close:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

/* counter */

.plb-counter {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* small screens */

@media (max-width: 768px) {
    .plb-prev { left: 4px; }
    .plb-next { right: 4px; }
    .plb-close {
        top: 8px;
        right: 8px;
    }
}

/* ============================
   PORTFOLIO LEFT – EXTRA INFO
============================ */

.portfolio-extra {
    margin-top: 32px;
    padding: 22px 22px 20px;
    border-radius: 18px;
    background: radial-gradient(circle at top left,
                rgba(21,168,255,0.18), transparent 55%)
                ,
                rgba(5, 8, 15, 0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.75);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px 28px;
}

/* naslovčići ("Kako izgleda saradnja", "Tech stack") */

.portfolio-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-light);
    margin: 0 0 10px;
}

/* ========== PROCESS – timeline ========== */

.portfolio-process {
    position: relative;
    padding-left: 20px;
}

.portfolio-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

/* vertikalna linija */

.portfolio-steps::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.18),
        rgba(15,98,254,0.8)
    );
    opacity: 0.6;
}

/* jedan step */

.portfolio-steps li {
    font-size: 14px;
    color: var(--color-light);
    padding-left: 20px;
    position: relative;
}

/* broj u kružiću */

.portfolio-steps li span {
    position: absolute;
    left: -4px;
    top: 1px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    font-weight: 600;
    color: var(--color-white);
    background: radial-gradient(circle at top left,
                 rgba(21,168,255,0.9),
                 rgba(15,98,254,0.9));
    box-shadow: 0 0 10px rgba(15,98,254,0.9);
}

/* ========== TECH STACK TAGS ========== */

.portfolio-stack {
    align-self: start;
}

.portfolio-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-stack-tags span {
    font-size: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--color-white);
    backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.portfolio-stack-tags span:hover {
    background: rgba(21,168,255,0.18);
    border-color: rgba(21,168,255,0.55);
    transform: translateY(-1px);
}

/* ========== QUOTE / TESTIMONIAL ========== */

.portfolio-quote {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.09);
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.portfolio-quote-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-white);
    position: relative;
}

.portfolio-quote-text::before {
    content: "“";
    position: absolute;
    left: -6px;
    top: -14px;
    font-size: 30px;
    opacity: 0.22;
    color: var(--color-accent);
    pointer-events: none;
}

.portfolio-quote-meta {
    margin: 0;
    font-size: 12px;
    color: var(--color-light);
    opacity: 0.8;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .portfolio-extra {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        gap: 22px;
    }

    .portfolio-quote {
        grid-column: 1 / 2;
    }
}

@media (max-width: 640px) {
    .portfolio-extra {
        padding: 18px 16px 16px;
        margin-top: 24px;
    }

    .portfolio-steps li {
        font-size: 13px;
    }
}

/* ============================
   ABOUT / STUDIO SECTION
============================ */

.about-section {
    padding: 110px 0 110px;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.10), transparent 60%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.10), transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* ============================
   LEFT SIDE (TEXT)
============================ */

.about-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.about-title {
    font-size: 34px;
    margin: 0 0 16px;
}

.about-text {
    font-size: 15px;
    color: var(--color-light);
    max-width: 520px;
    margin: 0 0 26px;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.about-bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at top left,
                rgba(21,168,255,0.9),
                rgba(15,98,254,0.9));
    box-shadow: 0 0 12px rgba(15,98,254,0.8);
    margin-top: 6px;
}

.about-bullet h3 {
    font-size: 15px;
    margin: 0 0 4px;
}

.about-bullet p {
    font-size: 14px;
    margin: 0;
    color: var(--color-light);
}

/* ============================
   RIGHT SIDE — NEW PERSON CARD
============================ */

.about-right {
    display: flex;
    justify-content: flex-end;
}

/* PERSON CARD WRAPPER */

.about-person-card {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 26px 26px 24px;
    background: linear-gradient(135deg, rgba(8,13,24,0.98), rgba(8,13,24,0.90));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 22px 55px rgba(0,0,0,0.85);
    position: relative;
    overflow: hidden;
}

.about-person-card::before {
    content: "";
    position: absolute;
    inset: -35%;
    background:
        radial-gradient(circle at top left, rgba(21,168,255,0.38), transparent 55%),
        radial-gradient(circle at bottom right, rgba(15,98,254,0.45), transparent 55%);
    opacity: 0.5;
    z-index: 0;
}

.about-person-card > * {
    position: relative;
    z-index: 1;
}

/* PHOTO */

.about-photo {
    width: 100%;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.6);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME & ROLE */

.person-name {
    font-size: 20px;
    margin: 0 0 2px;
    font-weight: 600;
}

.person-role {
    font-size: 13px;
    margin: 0 0 14px;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* BIO TEXT */

.person-bio {
    font-size: 14px;
    color: var(--color-light);
    margin-bottom: 18px;
    line-height: 1.55;
    max-width: 95%;
}

/* LIST */

.person-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--color-light);
}

.person-list span {
    color: var(--color-white);
    font-weight: 600;
}

/* CTA BUTTON */

.person-cta {
    margin-top: 6px;
    font-size: 13px;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 900px) {
    .about-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .about-right {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 90px 0 90px;
    }

    .about-title {
        font-size: 28px;
    }
}

/* ============================
   CASE STUDIES SECTION
============================ */

.case-section {
    padding: 120px 0;
}

.case-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.case-kicker {
    font-size: 12px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.case-title {
    font-size: 34px;
    margin-bottom: 10px;
}

.case-subtitle {
    font-size: 16px;
    color: var(--color-light);
}

/* GRID */

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
}

/* ITEM */

.case-item {
    display: block;
    background: #0e131e;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 35px rgba(0,0,0,0.6);
    transition: transform .25s ease, box-shadow .25s ease;
}

.case-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.75);
}

/* IMAGE */

.case-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* CONTENT */

.case-content {
    padding: 24px;
}

.case-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.case-content p {
    margin: 0 0 18px;
    font-size: 14px;
    color: var(--color-light);
}

/* RESULTS */

.case-results {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--color-light);
}

.case-results span {
    color: var(--color-accent);
    font-weight: 600;
}

/* LINK */

.case-link {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
}

/* ============================
   INDUSTRIES SECTION
============================ */


.industries-section {
    padding: 130px 0;
    position: relative;
}

.industries-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}

/* LEFT */

.industries-left {
    max-width: 540px;
}

.industries-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.industries-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.industries-subtitle {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.65;
}

/* RIGHT – ORBIT LAYOUT */

.industries-hover-info {
    margin-top: 26px;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-light);
    background: rgba(10, 14, 25, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 
        0 8px 24px rgba(0,0,0,0.45),
        inset 0 0 12px rgba(21,168,255,0.08);
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
    min-height: 50px;
}

.industries-hover-info.visible {
    opacity: 1;
    transform: translateY(0px);
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.55),
        inset 0 0 14px rgba(21,168,255,0.12);
}

.industries-hover-info.visible:hover {
    box-shadow:
        0 16px 42px rgba(0,0,0,0.6),
        inset 0 0 18px rgba(21,168,255,0.18);
}


.industries-orbit {
    position: relative;
    width: 420px;
    height: 420px;
    margin-left: auto;
}

.industries-orbit::before,
.industries-orbit::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 25px rgba(11, 197, 255, 0.12);
    pointer-events: none;
    transform-origin: center;
    animation: orbitRotate 32s linear infinite;
}

/* unutrašnji prsten */
.industries-orbit::after {
    inset: 60px;
    opacity: 0.6;
    animation-duration: 26s;
    animation-direction: reverse;
}

/* male svetle tačkice po prstenu */
.industries-orbit::before {
    background:
        radial-gradient(circle, rgba(134,227,255,0.9) 0, rgba(134,227,255,0) 60%) 
        8% 50% / 6px 6px no-repeat,
        radial-gradient(circle, rgba(134,227,255,0.8) 0, rgba(134,227,255,0) 60%) 
        76% 18% / 5px 5px no-repeat,
        radial-gradient(circle, rgba(134,227,255,0.75) 0, rgba(134,227,255,0) 60%) 
        60% 84% / 5px 5px no-repeat;
}

/* animacija rotacije prstenova */
@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* central core */

.orbit-core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: radial-gradient(circle at top left,
                rgba(21,168,255,0.50),
                rgba(8,13,24,0.98));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 26px 60px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: corePulse 8s ease-in-out infinite;
}

.orbit-label {
    font-size: 16px;
    font-weight: 600;
}

.orbit-tag {
    margin-top: 6px;
    font-size: 12px;
    color: var(--color-light);
    opacity: 0.9;
}

@media (max-width: 900px){
	.orbit-core{
		display: none;
	}
}

/* orbit items – base style */

.orbit-item {
    position: absolute;
    min-width: 220px;
    max-width: 250px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(10,14,26,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 40px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: default;
    overflow: hidden;
    will-change: transform, box-shadow;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
                border-color 0.25s ease, background 0.25s ease;
}

.orbit-title {
    font-size: 14px;
    font-weight: 600;
}

.orbit-desc {
    font-size: 12px;
    color: var(--color-light);
    opacity: 0.9;
}

/* positions + animacije (svaka malo drugačije) */

.orbit-1 { /* top left */
    top: 4%;
    left: -4%;
    animation: orbitDrift 9s ease-in-out infinite;
}

.orbit-2 { /* top right */
    top: -2%;
    right: -14%;
    animation: orbitDrift 10s ease-in-out infinite 0.4s;
}

.orbit-3 { /* bottom left */
    bottom: 4%;
    left: -6%;
    animation: orbitDrift 11s ease-in-out infinite 0.8s;
}

.orbit-4 { /* bottom right */
    bottom: -4%;
    right: -12%;
    animation: orbitDrift 9.5s ease-in-out infinite 0.2s;
}

/* hover efekat – jači glow i malko scale */

.orbit-item:hover {
    transform: translate3d(0,-6px,0) scale(1.03);
    box-shadow: 0 26px 55px rgba(0,0,0,1);
    border-color: rgba(21,168,255,0.8);
    background: radial-gradient(circle at top left,
                rgba(21,168,255,0.35),
                rgba(10,14,26,0.98));
}

/* ANIMACIJE */

@keyframes orbitDrift {
    0% {
        transform: translate3d(0,0,0);
    }
    50% {
        transform: translate3d(0,-8px,0);
    }
    100% {
        transform: translate3d(0,0,0);
    }
}

@keyframes corePulse {
    0% {
        box-shadow: 0 20px 46px rgba(0,0,0,0.85);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 30px 70px rgba(0,0,0,1);
        transform: translate(-50%, -50%) scale(1.04);
    }
    100% {
        box-shadow: 0 20px 46px rgba(0,0,0,0.85);
        transform: translate(-50%, -50%) scale(1);
    }
}

/* RESPONSIVE */
/* TABLET & MOBILE – JEDNA KOLONA, ORBIT U CENTRU */
@media (max-width: 900px) {
    .industries-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .industries-orbit {
        position: relative;
        width: 100%;
        max-width: 380px;
        height: auto;
        margin: 0 auto;          /* centriranje unutar containera */
        display: flex;
        flex-direction: column;
        align-items: center;     /* SVE u sredinu */
        gap: 16px;
    }

    /* krug više nije absolut, nego normalan blok u centru */
    .orbit-core {
        position: static;
        inset: auto;
        transform: none;
        margin: 0 auto 12px;
        animation: corePulse 8s ease-in-out infinite;
    }

    /* kartice idu ispod jedna ispod druge, full width */
    .orbit-item,
    .orbit-1,
    .orbit-2,
    .orbit-3,
    .orbit-4 {
        position: static;
        transform: none;
        max-width: 100%;
        width: 100%;
        animation: none; /* mirnije na mobilnom */
    }
}

/* MALO SITNIJI MOBILNI – sitniji fontovi i padding */
@media (max-width: 600px) {
    .industries-section {
        padding: 80px 0;
    }

    .industries-title {
        font-size: 28px;
    }

    .industries-orbit {
        max-width: 340px;        /* malo manji da lepo stane */
    }
}

/* ============================
   TESTIMONIALS SECTION
============================ */

.testimonials-section {
    padding: 120px 0;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 60px;
    align-items: center;
}

/* LEFT */

.testimonials-left {
    max-width: 520px;
}

.testimonials-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 34px;
    margin-bottom: 16px;
}

.testimonials-text {
    font-size: 15px;
    color: var(--color-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonials-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonials-meta span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--color-light);
    background: rgba(9,13,25,0.9);
}

/* RIGHT – CARDS */

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-card {
    background: rgba(11,15,26,0.96);
    border-radius: 20px;
    padding: 20px 20px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.85);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top left,
                rgba(21,168,255,0.3),
                transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(0,0,0,0.95);
    border-color: rgba(21,168,255,0.7);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

/* TOP ROW (AVATAR + INFO) */

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg,
                rgba(21,168,255,0.95),
                rgba(15,98,254,1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,0.7);
}

.testimonial-info h3 {
    font-size: 15px;
    margin: 0 0 3px;
}

.testimonial-info p {
    font-size: 12px;
    margin: 0;
    color: var(--color-light);
    opacity: 0.9;
}

/* QUOTE */

.testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-light);
    margin: 0 0 14px;
}

/* TAGS */

.testimonial-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.testimonial-tag-row span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(3,6,18,0.9);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-light);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .testimonials-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 90px 0;
    }

    .testimonials-title {
        font-size: 28px;
    }
}










/* ============================
   PAGES
============================ */

/* ============================
   SERVICE PAGE
============================ */

.page-services {
    padding-bottom: 100px;
}

/* HERO */

.hero::after {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(0, 102, 255, 0.25) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    opacity: 0.45;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.services-hero {
    position: relative;
    padding: 180px 0 120px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* GLOW iza naslova */
.services-hero::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle at center,
        rgba(56, 189, 248, 0.18) 0%,
        rgba(56, 189, 248, 0.08) 40%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* FADE iznad */
.services-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, #0a0f1c 50%, transparent);
    z-index: -1;
    pointer-events: none;
}

/* Naslov */
.services-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 auto 25px;
    max-width: 900px;
    line-height: 1.16;
}

/* Tekst */
.services-hero-text {
    font-size: 18px;
    color: #9ca3af;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.55;
}

/* Pilule */
.services-hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .services-hero {
        padding-top: 140px;
    }

    .services-hero h1 {
        font-size: 36px;
    }
}

.pill{
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 999px;
    color: #cfd6e0;
    backdrop-filter: blur(6px);
}

/* LAYOUT */

.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 56px;
    align-items: flex-start;
}

/* LEVA STRANA */

.services-aside {
    position: sticky;
    top: 0px;
    height: fit-content;
    transition: top .3s ease;
}

@media (max-width: 960px) {
    .services-aside {
        position: static !important;
        top: auto !important;
    }
}

.services-aside h2 {
    font-size: 26px;
    color: #f9fafb;
    margin-bottom: 10px;
}

.services-aside p {
    font-size: 15px;
    color: #9ca3af;
    margin-bottom: 18px;
}

.services-aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid rgba(148, 163, 184, 0.4);
    padding-left: 14px;
}

.services-aside-list li {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 8px;
}

/* DESNA STRANA – LISTA USLUGA */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    position: relative;
}

/* horizontalna linija kroz listu */

.services-list::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0.4), transparent 70%);
    pointer-events: none;
}

/* pojedinačna usluga */

.service-item {
    position: relative;
    padding: 18px 0 20px 34px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.service-item:last-child {
    border-bottom: none;
}

/* marker tačka */

.service-item::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 28px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle, #38bdf8, transparent 60%);
    box-shadow: 0 0 12px rgba(56,189,248,0.9);
}

/* header */

.service-item-header {
    margin-bottom: 14px;
}

.service-label {
    display: inline-flex;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.service-item-header h3 {
    font-size: 22px;
    color: #f9fafb;
    margin: 0 0 4px;
}

.service-item-kicker {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* body */

.service-item-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-columns--single {
    grid-template-columns: 1fr;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-bullets li {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.service-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #38bdf8;
}

/* meta row */

.service-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    color: #e5e7eb;
    background: rgba(15,23,42,0.9);
}

.service-link {
    font-size: 13px;
    color: #38bdf8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link:hover {
    text-decoration: underline;
}

/* manja usluga */

.service-item--small .service-columns {
    grid-template-columns: 1fr;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .services-aside {
        position: static;
    }

    .services-list::before {
        left: 8px;
    }

    .service-item {
        padding-left: 28px;
    }

    .service-item::before {
        left: 4px;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding-top: 110px;
    }

    .services-hero h1 {
        font-size: 32px;
    }

    .service-columns {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   LEFT SIDE — PREMIUM REDESIGN
=========================== */

.services-aside {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 42px;
    padding-left: 22px;
    border-left: 1px solid rgba(148,163,184,0.25);
}

/* horizontal glow linija */
.services-aside-track {
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(56,189,248,0.5),
        rgba(15,23,42,0.2),
        rgba(56,189,248,0.5)
    );
    opacity: 0.3;
}

/* jedan blok levo */
.services-aside-block {
    position: relative;
    padding-left: 6px;
}

/* male gornje label-e */
.aside-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
    display: block;
    margin-bottom: 6px;
}

/* glavni title */
.aside-title {
    font-size: 26px;
    color: #f8fafc;
    margin-bottom: 10px;
    line-height: 1.25;
}

/* sekundarni title */
.aside-subtitle {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

/* opis */
.aside-desc {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 16px;
    max-width: 480px;
}

/* liste */
.aside-list,
.aside-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aside-list li,
.aside-steps li {
    font-size: 14px;
    color: #cbd5f5;
    padding-left: 14px;
    position: relative;
}

.aside-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #38bdf8;
}

.aside-steps li strong {
    color: #38bdf8;
    font-weight: 600;
    margin-right: 4px;
}

/* ============================
   CONTACT PAGE
============================ */

/* ==========================
   CONTACT PAGE – NOVI DIZAJN
========================== */

.page-contact {
    padding-bottom: 120px;
}

/* HERO – levo poravnanje, clean */

.contact-hero {
    position: relative;
    padding: 180px 0 90px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

/* glow iza naslova */
.contact-hero::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 320px;
    background: radial-gradient(circle at center,
        rgba(56,189,248,0.20) 0%,
        rgba(56,189,248,0.07) 40%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.contact-hero .section-eyebrow {
    margin-bottom: 12px;
}

.contact-hero h1 {
    font-size: 50px;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 auto 20px;
    max-width: 820px;
    line-height: 1.15;
}

.contact-hero-text {
    font-size: 17px;
    color: #9ca3af;
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* META KARTICE – centrirane ispod hero-a */

.contact-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
}

.contact-meta-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: radial-gradient(circle at top left,
        rgba(15,23,42,0.98),
        rgba(15,23,42,0.90)
    );
    border: 1px solid rgba(31,41,55,0.95);
    text-align: left;
}

.meta-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b7280;
    margin-bottom: 6px;
}

.contact-meta-item p {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0;
}

.contact-meta-item a {
    color: #38bdf8;
    text-decoration: none;
}

.contact-meta-item a:hover {
    text-decoration: underline;
}

/* RESPONSIVE HERO */

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero-text {
        font-size: 15px;
    }
}

.meta-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 4px;
}

.contact-meta-item p {
    font-size: 13px;
    color: #e5e7eb;
    margin: 0;
}

.contact-meta-item a {
    color: #38bdf8;
    text-decoration: none;
}

.contact-meta-item a:hover {
    text-decoration: underline;
}

/* Gornja tank linija ispod hero-a (separacija) */

.page-contact .container + .container {
    border-top: 1px solid rgba(31,41,55,0.9);
}

/* LAYOUT – dve kolone */

.contact-layout {
    padding: 50px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 52px;
    align-items: flex-start;
    padding-top: 40px;
}

/* LEVA STRANA – info blok */

.contact-left h2 {
    font-size: 22px;
    color: #f9fafb;
    margin: 0 0 16px;
}

.contact-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.contact-checklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #cbd5f5;
}

.contact-checklist li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.6);
    font-size: 12px;
    color: #e5e7eb;
    background: rgba(15,23,42,0.96);
}

/* mala kartica napomene */

.contact-note {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(148,163,184,0.7);
    background: radial-gradient(circle at top left,
        rgba(15,23,42,0.96),
        rgba(15,23,42,0.9)
    );
    font-size: 13px;
    color: #9ca3af;
}

.contact-note strong {
    color: #e5e7eb;
}

/* DESNA STRANA – FORMA */

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* card oko forme – manje glowa, više clean */

.contact-form-card {
    padding: 22px 22px 24px;
    border-radius: 18px;
    background: linear-gradient(
        to bottom right,
        rgba(15,23,42,0.98),
        rgba(15,23,42,0.92)
    );
    border: 1px solid rgba(55,65,81,0.95);
    box-shadow: 0 18px 40px rgba(15,23,42,0.85);
}

.contact-form-card h3 {
    font-size: 20px;
    color: #f9fafb;
    margin: 0 0 6px;
}

.contact-form-text {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 18px;
}

/* FORM – layout */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 12px;
    text-transform: none;
    color: #e5e7eb;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 10px 11px;
    border-radius: 10px;
    border: 1px solid rgba(55,65,81,0.95);
    background: rgba(15,23,42,0.98);
    color: #f9fafb;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6b7280;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.45);
    background: #020617;
}

/* footer forme */

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 2px;
}

.cf-consent {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}

.cf-consent input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #38bdf8;
}

/* dugme */

.btn-contact-submit {
    margin-top: 4px;
    border: none;
    cursor: pointer;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(to right, #38bdf8, #6366f1);
    color: #020617;
    box-shadow: 0 12px 30px rgba(15,23,42,0.9);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(15,23,42,0.95);
    filter: brightness(1.05);
}

/* tekst ispod forme */

.contact-direct-note {
    font-size: 13px;
    color: #9ca3af;
}

.contact-direct-note a {
    color: #38bdf8;
    text-decoration: none;
}

.contact-direct-note a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 32px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding-top: 130px;
        padding-bottom: 50px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-meta {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 18px 16px 20px;
    }
}

/* ==========================
   TOAST NOTIFIKACIJA
========================== */

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    pointer-events: none; /* da ne blokira klikove okolo */
}

.toast-inner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 360px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(55,65,81,0.95);
    box-shadow: 0 18px 40px rgba(15,23,42,0.9);
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: auto; /* unutar toasta možemo da klikćemo */
}

.toast-inner--success {
    border-color: rgba(34,197,94,0.75);
}

.toast-inner--error {
    border-color: rgba(248,113,113,0.8);
}

.toast-icon {
    font-size: 16px;
    margin-top: 1px;
}

.toast-message {
    margin: 0;
    line-height: 1.5;
}

.toast-message a {
    color: #38bdf8;
    text-decoration: none;
}

.toast-message a:hover {
    text-decoration: underline;
}

.toast-close {
    margin-left: 6px;
    padding: 0 4px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
}

/* vidljivost */

.toast.is-visible .toast-inner {
    opacity: 1;
    transform: translateY(0);
}

/* responsive */

@media (max-width: 640px) {
    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .toast-inner {
        max-width: none;
        border-radius: 12px;
    }
}


/* =====================================
   ABOUT PAGE 
===================================== */

.team-cta {
    margin-top: 40px;
    text-align: center;
}

.team-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(21,168,255,0.7), rgba(14,48,93,0.7));
    border: 1px solid rgba(21,168,255,0.35);
    box-shadow: 0 10px 35px rgba(0,0,0,0.55), inset 0 0 12px rgba(21,168,255,0.25);
    transition: all .25s ease;
}

.team-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 45px rgba(0,0,0,0.65), inset 0 0 18px rgba(21,168,255,0.35);
    border-color: rgba(21,168,255,0.7);
}


.about-page {
    padding-bottom: 110px;
  }
  
  /* ---------- HERO ---------- */
  
  .about-hero {
    padding: 160px 80px;
    position: relative;
  }
  
  .about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
  }
  
  /* levi stub */
  
  .about-hero-left {
    position: relative;
    padding-left: 26px;
  }
  
  /* fina vertikalna linija kao na services strani */
  .about-hero-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
      to bottom,
      rgba(148, 163, 184, 0.7),
      rgba(15, 23, 42, 0.2),
      rgba(56, 189, 248, 0.7)
    );
    opacity: 0.8;
  }
  
  .about-hero-left h1 {
    font-size: 40px;
    font-weight: 700;
    color: #f9fafb;
    margin: 0 0 14px;
    line-height: 1.15;
  }
  
  .about-hero-lead {
    font-size: 16px;
    color: #9ca3af;
    max-width: 640px;
    margin: 0 0 24px;
    line-height: 1.6;
  }
  
  /* bulleti ispod intro teksta */
  
  .about-hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }
  
  .about-hero-bullet {
    display: flex;
    gap: 10px;
  }
  
  .about-hero-bullet .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    background: radial-gradient(circle, #38bdf8, transparent 60%);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
    flex-shrink: 0;
  }
  
  .about-hero-bullet h3 {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0 0 2px;
  }
  
  .about-hero-bullet p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
  }
  
  /* meta mini-statistike */
  
  .about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 4px;
  }
  
  .about-hero-meta > div {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: radial-gradient(
      circle at top left,
      rgba(15, 23, 42, 0.98),
      rgba(15, 23, 42, 0.9)
    );
  }
  
  .about-hero-meta .label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #9ca3af;
    margin-bottom: 3px;
  }
  
  .about-hero-meta p {
    font-size: 13px;
    color: #e5e7eb;
    margin: 0;
  }
  
  /* ---------- HERO – DESNO (FOUNDERSKI CARD) ---------- */
  
  .about-hero-right {
    position: relative;
  }
  
  /* glow iza kartice */
  .about-hero-right::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
      circle at 20% 0%,
      rgba(56, 189, 248, 0.25),
      transparent 60%
    );
    filter: blur(32px);
    opacity: 0.9;
    pointer-events: none;
  }
  
  .about-founder-card {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(31, 41, 55, 0.9);
    background: radial-gradient(
        circle at top left,
        rgba(15, 23, 42, 0.92),
        rgba(15, 23, 42, 0.98)
      );
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.95fr 1.4fr;
    gap: 0;
  }
  
  /* slika */
  
  .about-founder-image {
    position: relative;
    overflow: hidden;
  }
  
  .about-founder-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* sitan gradijent preko slike da bude “studio” mood */
  .about-founder-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.05),
      rgba(15, 23, 42, 0.35)
    );
  }
  
  /* tekst desno */
  
  .about-founder-body {
    padding: 18px 18px 18px 16px;
  }
  
  .about-founder-body h2 {
    font-size: 18px;
    color: #f9fafb;
    margin: 0 0 4px;
  }
  
  .about-founder-role {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 10px;
  }
  
  .about-founder-text {
    font-size: 14px;
    color: #cbd5f5;
    margin: 0 0 10px;
    line-height: 1.6;
  }
  
  .about-founder-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .about-founder-list li {
    font-size: 13px;
    color: #9ca3af;
  }
  
  /* tags + dugme */
  
  .about-founder-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .about-founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .about-founder-tags span {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.95);
  }
  
  .about-founder-cta {
    font-size: 13px;
  }
  
  /* ---------- STORY / WHY THIS STUDIO ---------- */
  
  .about-story {
    padding: 40px 60px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
  }
  
  .about-story-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 52px;
    align-items: flex-start;
  }
  
  .about-story-text h2 {
    font-size: 26px;
    color: #f9fafb;
    margin: 0 0 14px;
  }
  
  .about-story-text p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 12px;
  }
  
  .about-story-text p strong {
    color: #e5e7eb;
  }
  
  /* tri mala “reason” boxa */
  
  .about-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
  }
  
  .about-story-item {
    padding: 12px 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: rgba(15, 23, 42, 0.96);
  }
  
  .about-story-item h3 {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0 0 6px;
  }
  
  .about-story-item p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
  }
  
  /* desni panel sa koracima */
  
  .about-story-panel {
    padding: 16px 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: radial-gradient(
        circle at top left,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.98)
      );
  }
  
  .about-story-panel h3 {
    font-size: 16px;
    color: #f9fafb;
    margin: 0 0 10px;
  }
  
  .about-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .about-steps li {
    font-size: 13px;
    color: #cbd5f5;
    display: flex;
    gap: 8px;
  }
  
  .about-steps li span {
    display: inline-block;
    min-width: 28px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #38bdf8;
  }
  
  /* ---------- STATS STRIP ---------- */
  
  .about-stats {
    padding: 26px 0;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
    background: radial-gradient(
        circle at top,
        rgba(15, 23, 42, 0.85),
        rgba(15, 23, 42, 0.98)
      );
  }
  
  .about-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
  }
  
  .about-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 2px;
  }
  
  .about-stat-label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }

  /* ========= RESPONSIVE – ABOUT STORY & STATS ========= */

/* --- veći tablet / manji laptop (do 1200px) --- */
@media (max-width: 1200px) {
    .about-story {
      padding: 40px 40px;
    }
  
    .about-story-inner {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 40px;
    }
  
    .about-story-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .about-stats-inner {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  /* --- tablet & landscape telefoni (do 900px) --- */
  @media (max-width: 900px) {
    .about-story {
      padding: 36px 32px;
    }
  
    .about-story-inner {
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
    }
  
    .about-story-text h2 {
      font-size: 24px;
    }
  
    .about-story-text p {
      font-size: 14px;
    }
  
    /* 3 boxa postaju 2 u redu */
    .about-story-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
  
    .about-story-item h3 {
      font-size: 13px;
    }
  
    .about-story-item p {
      font-size: 12px;
    }
  
    /* stats – 2x2 layout */
    .about-stats-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
  
    .about-stat-number {
      font-size: 22px;
    }
  
    .about-stat-label {
      font-size: 11px;
    }
  }
  
  /* --- mali telefoni (do 600px) --- */
  @media (max-width: 600px) {
    .about-story {
      padding: 32px 20px;
    }
  
    .about-story-text h2 {
      font-size: 22px;
    }
  
    .about-story-text p {
      font-size: 13px;
    }
  
    /* reason boxevi jedan ispod drugog */
    .about-story-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .about-story-item {
      padding: 10px 10px 12px;
    }
  
    .about-story-panel {
      padding: 14px 14px 16px;
      border-radius: 14px;
    }
  
    .about-story-panel h3 {
      font-size: 15px;
    }
  
    .about-steps li {
      font-size: 12px;
    }
  
    .about-steps li span {
      font-size: 10px;
      min-width: 24px;
    }
  
    /* stats – jedan ispod drugog */
    .about-stats {
      padding: 22px 0;
    }
  
    .about-stats-inner {
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
    }
  
    .about-stat-number {
      font-size: 20px;
    }
  
    .about-stat-label {
      font-size: 11px;
      letter-spacing: 0.12em;
    }
  }
  

  /* ========= RESPONSIVE – ABOUT HERO ========= */
@media (max-width: 1200px) {
    .about-hero {
      padding: 140px 48px 110px;
    }
  
    .about-hero-inner {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 44px;
    }
  
    .about-founder-card {
      grid-template-columns: 0.9fr 1.3fr;
    }
  }

  @media (max-width: 900px) {
    .about-hero {
      padding: 120px 32px 90px;
    }
  
    .about-hero-inner {
      grid-template-columns: minmax(0, 1fr);
      gap: 36px;
    }
  
    .about-hero-left {
      padding-left: 20px;
    }
  
    .about-hero-left h1 {
      font-size: 32px;
    }
  
    .about-hero-lead {
      font-size: 14px;
    }
  
    .about-hero-meta {
      gap: 12px;
    }
  
    .about-hero-meta > div {
      padding: 9px 10px;
    }
  
    /* founder kartica prelazi u jednu kolonu */
    .about-founder-card {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .about-founder-image {
      max-height: 260px;
    }
  
    .about-founder-body {
      padding: 16px 16px 18px;
    }
  
    .about-founder-footer {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* --- mali telefoni (do 600px) --- */
  @media (max-width: 600px) {
    .about-hero {
      padding: 110px 20px 80px;
    }
  
    .about-hero-left {
      padding-left: 16px;
    }
  
    .about-hero-left::before {
      left: 0;
    }
  
    .about-hero-left h1 {
      font-size: 28px;
    }
  
    .about-hero-lead {
      font-size: 13px;
    }
  
    .about-hero-bullets {
      gap: 10px;
    }
  
    .about-hero-bullet h3 {
      font-size: 13px;
    }
  
    .about-hero-bullet p {
      font-size: 12px;
    }
  
    .about-hero-meta {
      gap: 8px;
    }
  
    .about-hero-meta > div {
      flex: 1 1 100%;
    }
  
    .about-founder-card {
      border-radius: 16px;
    }
  
    .about-founder-body h2 {
      font-size: 16px;
    }
  
    .about-founder-text {
      font-size: 13px;
    }
  
    .about-founder-list li {
      font-size: 12px;
    }
  
    .about-founder-tags span {
      font-size: 10px;
      padding: 3px 8px;
    }
  
    .about-founder-cta {
      font-size: 12px;
    }
  }
  
  
 /* ================================
   ABOUT – TEAM (COMPACT GRID)
================================ */

.about-team {
    padding: 80px 0 70px;
    border-top: 1px solid rgba(31, 41, 55, 0.75);
}

.about-team-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-team-head .section-eyebrow {
    margin-bottom: 8px;
}

.about-team-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 14px;
    line-height: 1.25;
}

.about-team-head .about-team-intro {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto;
}
/* GRID 3 MANJE KARTICE U SREDINI */

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* sama kartica */

.team-card {
    background: rgba(12, 18, 30, 0.96);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.75);
    border-color: rgba(56, 189, 248, 0.5);
}

/* slika */

.team-photo {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(15,23,42,0.9);
}

.team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15,98,254,0.35), transparent 65%);
    mix-blend-mode: soft-light;
    opacity: 0.7;
    pointer-events: none;
}

.team-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

/* tekst u kartici */

.team-card-body {
    padding: 18px 18px 20px;
}

.team-card-body h3 {
    font-size: 17px;
    color: #f9fafb;
    margin: 0 0 4px;
}

.team-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #60a5fa;
    margin: 0 0 10px;
}

.team-text {
    font-size: 13px;
    color: #cbd5f5;
    line-height: 1.55;
    margin: 0 0 10px;
}

/* lista tačaka */

.team-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-points li {
    position: relative;
    padding-left: 12px;
    font-size: 12.5px;
    color: #9ca3af;
}

.team-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 1px;
    border-radius: 999px;
    background: #38bdf8;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .about-team {
        padding: 60px 0 50px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .team-photo img {
        height: 200px;
    }
}

  
/* ==========================
   PORTFOLIO PAGE
========================== */

/* ==========================
   PORTFOLIO PAGE – NOVI DIZAJN (TWEAKED)
========================== */

.portfolio-page {
    padding-bottom: 80px;
  }
  
  /* HERO V2 */
  
  .portfolio-hero-v2 {
    position: relative;
    padding: 130px 70px;
    overflow: hidden;
  }
  
  .portfolio-hero-bg {
    position: absolute;
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
  }
  
  .portfolio-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
  }
  
  .phv2-left h1 {
    font-size: 36px;
    font-weight: 700;
    color: #f9fafb;
    margin: 8px 0 14px;
  }
  
  .phv2-text {
    font-size: 15px;
    color: #cbd5f5;
    max-width: 620px;
    margin: 0 0 24px;
    line-height: 1.7;
  }
  
  .phv2-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .phv2-meta-box {
    padding: 9px 11px;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.45);
    background: rgba(15,23,42,0.9);
    min-width: 165px;
  }
  
  .phv2-meta-box span {
    display: block;
    font-size: 13px;
    color: #e5e7eb;
  }
  
  .phv2-meta-box p {
    font-size: 12px;
    color: #9ca3af;
    margin: 2px 0 0;
  }
  
  /* mockup desno */
  
  .phv2-right {
    display: flex;
    justify-content: flex-end;
  }
  
  .phv2-mockup {
    position: relative;
    max-width: 400px;
    border-radius: 20px;
    border: 1px solid rgba(148,163,184,0.5);
    background: radial-gradient(circle at top left, rgba(15,23,42,0.97), rgba(15,23,42,1));
    box-shadow:
      0 20px 45px rgba(15,23,42,0.9),
      0 0 18px rgba(15,23,42,0.7);
    overflow: hidden;
  }
  
  .phv2-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(31,41,55,0.9);
    background: rgba(15,23,42,0.96);
  }
  
  .phv2-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4b5563;
  }
  
  .phv2-browser-bar p {
    margin: 0 0 0 8px;
    font-size: 11px;
    color: #9ca3af;
  }
  
  .phv2-mockup-body {
    padding: 10px;
  }
  
  .phv2-mockup-body img {
    display: block;
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(31,41,55,0.95);
  }
  
  /* pills na mockupu */
  
  .phv2-pill {
    position: absolute;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15,23,42,0.9);
    border: 1px solid rgba(148,163,184,0.85);
    color: #e5e7eb;
    backdrop-filter: blur(8px);
  }
  
  .phv2-pill-type {
    left: 14px;
    bottom: 14px;
  }
  
  .phv2-pill-tech {
    right: 14px;
    bottom: 14px;
  }
  
  /* ==========================
     SHOWCASE
  ========================== */
  
  .portfolio-showcase {
    padding: 10px 40px;
  }
  
  /* filter dugmad – nova verzija */
  
  .portfolio-filters-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 22px;
  }
  
  .pfv2-label {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
  }
  
  .pfv2-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pf-btn {
    font-size: 12px;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    background: rgba(15,23,42,0.9);
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.18s ease-out;
  }
  
  .pf-btn:hover {
    border-color: #38bdf8;
  }
  
  .pf-btn.is-active {
    background: #38bdf8;
    color: #0b1120;
    border-color: #38bdf8;
  }
  
  /* LISTA PROJEKATA – HORIZONTALNE KARTICE */
  
  .portfolio-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .portfolio-card {
    display: flex;
    gap: 18px;
    border-radius: 18px;
    border: 1px solid rgba(31,41,55,0.95);
    background:
      linear-gradient(135deg, rgba(30, 35, 43, 0.96), rgb(33, 42, 63));
    box-shadow: 0 16px 36px rgba(15,23,42,0.9);
    padding: 10px 12px;
    transition:
      transform 0.2s ease-out,
      box-shadow 0.2s ease-out,
      border-color 0.2s ease-out,
      background 0.2s ease-out;
  }
  
  /* jači hover samo na većim ekranima */
  @media (min-width: 769px) {
    .portfolio-card:hover {
      transform: translateY(-3px);
      box-shadow:
        0 20px 46px rgba(15,23,42,0.95),
        0 0 18px rgba(37,99,235,0.45);
      border-color: #38bdf8;
      background:
        radial-gradient(circle at top left, rgba(37,99,235,0.24), rgba(15,23,42,1));
    }
  }
  
  /* thumb */
  
  .pc-thumb {
    width: 33%;
    min-width: 210px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(31,41,55,0.95);
    background: #020617;
  }
  
  .pc-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-out;
  }
  
  @media (min-width: 769px) {
    .portfolio-card:hover .pc-thumb img {
      transform: scale(1.03);
    }
  }
  
  /* content */
  
  .pc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .pc-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
  }
  
  .pc-tag-type {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0;
  }
  
  .pc-pill {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    color: #e5e7eb;
    background: rgba(15,23,42,0.96);
  }
  
  .pc-title {
    font-size: 17px;
    color: #f9fafb;
    margin: 0;
  }
  
  .pc-desc {
    font-size: 13px;
    color: #cbd5f5;
    margin: 0;
    line-height: 1.6;
  }
  
  /* meta row */
  
  .pc-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
  }
  
  .pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .pc-tags span {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(55,65,81,0.9);
    color: #e5e7eb;
    background: rgba(15,23,42,0.9);
  }
  
  .pc-link {
    font-size: 13px;
    color: #38bdf8;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .pc-link:hover {
    text-decoration: underline;
  }
  
  /* ==========================
     CTA V2
  ========================== */
  
  .portfolio-cta-v2 {
    padding: 20px 0 40px;
  }
  
  .portfolio-cta-inner-v2 {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(31,41,55,0.95);
    background:
      radial-gradient(circle at top left, rgba(15,23,42,0.96), rgba(15,23,42,0.99));
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: 0 18px 42px rgba(15,23,42,0.95);
  }
  
  .pctav2-left h2 {
    font-size: 20px;
    color: #f9fafb;
    margin: 2px 0 6px;
  }
  
  .pctav2-left p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    max-width: 540px;
    line-height: 1.6;
  }
  
  .pctav2-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .pctav2-btn {
    font-size: 14px;
    padding: 9px 18px;
    border-radius: 999px;
  }
  
  /* ==========================
     RESPONSIVE
  ========================== */
  
  @media (max-width: 1024px) {
    .portfolio-hero-inner {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    }
  
    .portfolio-hero-v2 {
      padding-top: 120px;
    }
  }
  
  @media (max-width: 860px) {
    .portfolio-hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .phv2-right {
      justify-content: flex-start;
    }
  
    .phv2-mockup {
      max-width: 100%;
    }
  
    .portfolio-card {
      flex-direction: column;
      padding: 10px;
    }
  
    .pc-thumb {
      width: 100%;
      min-width: 0;
    }
  }
  
  @media (max-width: 640px) {
    .portfolio-hero-v2 {
      padding-top: 110px;
      padding-bottom: 60px;
    }
  
    .phv2-left h1 {
      font-size: 28px;
    }
  
    .portfolio-cta-inner-v2 {
      padding: 14px 12px;
      align-items: flex-start;
    }
  
    .pctav2-btn {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  }
  

  /* ==========================
   CTA STRIP – PAKETI PAGE
========================== */

.pricing-v2 {
    position: relative;
    padding: 100px 130px;
    color: #fff;
    overflow: hidden;
}

.pricing-v2-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

/* HERO */
.pricing-head {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-head h1 {
    font-size: 42px;
    font-weight: 700;
}

.pricing-sub {
    margin-top: 8px;
    font-size: 16px;
    color: rgba(220,225,235,0.85);
}

/* CARD */
.pricing-v2-card {
    position: relative;
    background: rgba(10, 14, 22, 0.95);
    border-radius: 26px;
    padding: 38px 30px 36px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .3s ease;
    overflow: hidden;
}

/* halo glow */
.pricing-v2-card::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 50% 0%, rgba(21,168,255,0.22), transparent 70%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
}

.pricing-v2-card:hover::before {
    opacity: 1;
}

.pricing-v2-card:hover {
    transform: translateY(-10px);
    border-color: rgba(21,168,255,0.35);
    box-shadow:
        0 28px 70px rgba(0,0,0,0.85),
        0 0 35px rgba(15,98,254,0.35);
}

/* ICON */
.pricing-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(21,168,255,0.95), rgba(15,98,254,0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
    box-shadow:
        0 12px 30px rgba(15,98,254,0.35),
        inset 0 0 14px rgba(255,255,255,0.2);
}

/* PRICE */
.pricing-price {
    margin: 4px 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.pricing-number {
    font-size: 30px;
    font-weight: 700;
}

/* LIST */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(220,227,239,0.95);
    font-size: 14px;
}

.pricing-list li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--color-accent, #3abaff);
}

/* FOOTER BUTTON */
.pricing-bottom {
    margin-top: auto;
}

.pricing-btn {
    width: 100%;
    padding: 12px 0;
    border-radius: 12px;
}

/* FEATURED CARD */
.featured {
    border-color: rgba(21,168,255,0.6);
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.9),
        0 0 40px rgba(15,98,254,0.45);
}

.featured::before {
    opacity: 1 !important;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1FAFFF, #0F62FE);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 30px rgba(15,98,254,0.4);
}

/* SPOTLIGHTS */
.pricing-spotlight {
    position: absolute;
    width: 420px;
    height: 420px;
    filter: blur(140px);
    opacity: 0.55;
    pointer-events: none;
}

.spotlight-1 { top: -60px; left: 5%; background: rgba(21,168,255,0.28); }
.spotlight-2 { top: 20%; right: 10%; background: rgba(15,98,254,0.25); }
.spotlight-3 { bottom: -40px; left: 50%; transform: translateX(-50%); background: rgba(21,168,255,0.18); }

/* VERTICAL STRIPE LINES */
.pricing-v2::after,
.pricing-v2::before {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    pointer-events: none;
}

.pricing-v2::after {
    left: 50%;
    background: linear-gradient(to bottom,
        rgba(21,168,255,0) 0%,
        rgba(21,168,255,0.08) 40%,
        rgba(21,168,255,0) 100%);
}

.pricing-v2::before {
    left: 25%;
    background: linear-gradient(to bottom,
        rgba(15,98,254,0) 0%,
        rgba(15,98,254,0.08) 40%,
        rgba(15,98,254,0) 100%);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing-v2 {
        padding: 80px 0 90px;
    }

    .pricing-head h1 {
        font-size: 30px;
    }

    .pricing-v2-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .featured {
        transform: none;
    }
}

/* =====================
   SWITCHER
===================== */
.pricing-switcher {
    text-align: center;
    margin: 30px 0 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.switch-btn {
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(220,225,235,0.9);
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
}

.switch-btn.active {
    background: linear-gradient(135deg,#1FAFFF,#0F62FE);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(15,98,254,0.4);
}

/* ==========================
   INCLUDED IN EVERY PACKAGE
========================== */

.included-section {
    padding: 110px 0;
    position: relative;
}

.included-head {
    text-align: left;
    max-width: 720px;
    margin: 0 auto 50px;
}

.included-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent, #1FAFFF);
    margin-bottom: 10px;
}

.included-head h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.included-sub {
    font-size: 15px;
    color: rgba(210,220,235,0.9);
}

/* GRID */

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 32px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(21,168,255,0.12), transparent 60%),
                rgba(10,14,22,0.9);
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 16px 36px rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
}

.included-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #0b1220;
    background: linear-gradient(135deg, #1FAFFF, #0F62FE);
    box-shadow: 0 0 14px rgba(15,98,254,0.65);
    flex-shrink: 0;
}

.included-body h3 {
    font-size: 16px;
    margin: 0 0 4px;
}

.included-body p {
    font-size: 14px;
    color: rgba(210,220,235,0.9);
    margin: 0;
}

/* Hover micro interaction */
.included-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 50px rgba(0,0,0,0.85),
        0 0 22px rgba(15,98,254,0.35);
    transition: transform .22s ease, box-shadow .22s ease;
}

/* Responsive */

@media (max-width: 1024px) {
    .included-head {
        text-align: left;
        margin-bottom: 40px;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .included-section {
        padding: 80px 0;
    }

    .included-head h2 {
        font-size: 24px;
    }
}

.cta-strip {
    padding: 80px 0 110px;
    position: relative;
}

.cta-strip-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;

    border-radius: 26px;
    padding: 26px 30px;
    background:
        radial-gradient(circle at 0% 0%, rgba(21,168,255,0.22), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(15,98,254,0.25), transparent 65%),
        rgba(10,14,22,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 22px 60px rgba(0,0,0,0.9),
        0 0 30px rgba(15,98,254,0.35);
    overflow: hidden;
}

/* suptilna linija kroz strip */
.cta-strip-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.06) 48%,
        transparent 52%,
        transparent 100%
    );
    opacity: 0.3;
    pointer-events: none;
}

/* LEFT */

.cta-strip-left {
    position: relative;
    z-index: 1;
}

.cta-strip-kicker {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent, #1FAFFF);
    margin-bottom: 8px;
}

.cta-strip-left h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.cta-strip-left p {
    font-size: 15px;
    color: rgba(210,220,235,0.9);
    max-width: 460px;
}

/* RIGHT */

.cta-strip-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cta-strip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: rgba(210,220,235,0.9);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-strip-list li::before {
    content: "•";
    color: var(--color-accent, #1FAFFF);
    margin-right: 6px;
}

/* Dugme */

.cta-strip-btn {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1FAFFF, #0F62FE);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    box-shadow:
        0 10px 28px rgba(15,98,254,0.45),
        0 0 18px rgba(15,98,254,0.45);
    transition: transform .22s ease, box-shadow .22s ease;
}

.cta-strip-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 40px rgba(15,98,254,0.6),
        0 0 28px rgba(15,98,254,0.6);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .cta-strip-inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 22px 20px;
        gap: 24px;
    }

    .cta-strip-left h2 {
        font-size: 22px;
    }

    .cta-strip-left p {
        max-width: none;
    }

    .cta-strip-right {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .cta-strip {
        padding: 60px 0 80px;
    }

    .cta-strip-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =====================
   COMPARISON TABLE
===================== */
.pricing-compare {
    margin-top: 80px;
    text-align: center;
}

.pricing-compare h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.cmp-table {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10,14,22,0.7);
    border: 1px solid rgba(255,255,255,0.06);
}

.cmp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(220,227,239,0.95);
    font-size: 15px;
}

.cmp-head {
    background: rgba(15,23,42,0.85);
    font-weight: 600;
}

.cmp-row:last-child {
    border-bottom: none;
}

.cmp-row div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-row div:first-child {
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
    .cmp-row {
        grid-template-columns: 1.5fr .7fr .7fr .7fr;
        font-size: 13px;
    }
}

/* ================================
   SHINE ANIMATION ON HOVER
================================ */

.pricing-v2-card {
    position: relative;
    overflow: hidden;
}

/* Shine layer */
.pricing-v2-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 25%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.15) 75%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(12deg);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

/* Hover triggers shine move */
.pricing-v2-card:hover::after {
    animation: shineMove 1.2s ease forwards;
    opacity: 1;
}

@keyframes shineMove {
    0% {
        transform: translate(-50%, -50%) rotate(12deg);
    }
    100% {
        transform: translate(50%, 50%) rotate(12deg);
    }
}


/* ============================================
   3D Card Shine Element
============================================ */

.card-shine {
    position: absolute;
    width: 180%;
    height: 180%;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.45),
        rgba(255,255,255,0) 60%
    );
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
    mix-blend-mode: overlay;
    z-index: 3;
}

/* Enhance 3D effect */
.pricing-v2-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s ease;
}

/* ============================================
   HOW TO CHOOSE SECTION
============================================ */

.pricing-how {
    padding: 80px 0 40px;
    position: relative;
}

.ph-title {
    font-size: 30px;
    font-weight: 700;
    color: #f3f4f6;
    text-align: center;
    margin-bottom: 10px;
}

.ph-sub {
    text-align: center;
    font-size: 15px;
    color: #9ca3af;
    max-width: 500px;
    margin: 0 auto 40px;
}

.ph-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ph-box {
    background: rgba(10, 14, 22, 0.92);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .25s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.40);
}

.ph-box:hover {
    border-color: rgba(21,168,255,0.4);
    transform: translateY(-6px);
    box-shadow:
        0 28px 65px rgba(0,0,0,0.55),
        0 0 35px rgba(21,168,255,0.25);
}

.ph-box.featured {
    border-color: rgba(21,168,255,0.6);
    box-shadow:
        0 28px 70px rgba(0,0,0,0.65),
        0 0 35px rgba(15,98,254,0.45);
}

.ph-box h3 {
    font-size: 20px;
    margin: 0;
    color: #f9fafb;
}

.ph-text {
    font-size: 14px;
    color: #cfd6e0;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
    .ph-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== RESPONSIVE ZA TABELU PAKETA ====== */
@media (max-width: 768px) {

    .cmp-table {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .cmp-row {
      min-width: 520px; 
    }
  
    .cmp-row div {
      font-size: 13px;
      padding: 10px 12px;
    }
  }
  
  @media (max-width: 480px) {
    .cmp-row {
      min-width: 540px;
    }
  
    .cmp-row div {
      font-size: 12px;
      padding: 8px 10px;
    }
  }
  
