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

:root {
    --neon: #d4ff00;
    --neon-glow: rgba(212, 255, 0, 0.4);
    --dark-1: #0a0e1a;
    --dark-2: #141824;
    --dark-3: #1e2330;
    --accent: #00f0ff;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-1);
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== GLAVNI MENI ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}

.main-header.scrolled {
    padding: 0.6rem 0;
    background: transparent;
    border-bottom: none;
}

.header-container {
    max-width: 100%;
    padding: 0 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
}

/* Logo */
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo .logo-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--neon-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.logo-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--neon) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--neon);
    background: rgba(212, 255, 0, 0.05);
}

.nav-link.active {
    color: var(--neon);
    background: rgba(212, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.15);
}

.nav-cta-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-1);
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    background: var(--neon);
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    letter-spacing: 0.02em;
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
}

.nav-cta-btn:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(212, 255, 0, 0.5);
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-glow);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* ========== ANIMATED BACKGROUND ========== */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 255, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

/* Noise texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* ========== GRID KOCKICE - CSS ONLY (BEZ JAVASCRIPT) ========== */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 120px,
            rgba(212, 255, 0, 0.04) 120px,
            rgba(212, 255, 0, 0.04) 121px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 120px,
            rgba(212, 255, 0, 0.04) 120px,
            rgba(212, 255, 0, 0.04) 121px
        );
    background-size: 100% 100%;
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 255, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 240, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(212, 255, 0, 0.06) 0%, transparent 30%);
    animation: gridGlow 8s ease-in-out infinite;
}

@keyframes gridGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
/* ZA MOBILNI - POJAČAJ VIDLJIVOST */

@media (max-width: 768px) {
    .grid-background {
opacity: 1;  /* PROMENI SA default NA 0.6 ili 0.8 */
background-image: 
    repeating-linear-gradient(
        0deg,
        transparent,
        transparent 100px,
        rgba(212, 255, 0, 0.08) 100px,  /* PROMENI SA 0.03 NA 0.08 ili 0.1 */
        rgba(212, 255, 0, 0.08) 101px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(212, 255, 0, 0.08) 100px,  /* PROMENI SA 0.03 NA 0.08 ili 0.1 */
        rgba(212, 255, 0, 0.08) 101px
    );
    }
}
}

/* ========== HERO CONTAINER ========== */
.hero-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.76, 0, 0.24, 1), 
                visibility 0s 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 1rem 160px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 2;
}

.slide-inner {
    max-width: min(1200px, 90vw);
    width: 100%;
    padding: 1rem;
    position: relative;
    z-index: 3;
}

/* Typography */
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: clamp(0.6rem, 1.2vh, 0.9rem);
    letter-spacing: -0.05em;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3em;
    white-space: nowrap;
}

.hero-title .line {
    display: inline;
    overflow: visible;
    padding: 0;
    white-space: nowrap;
}

.hero-title .word {
    display: inline-block;
    overflow: visible;
    padding-right: 0.25em;
}

.hero-title .char {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.slide.active .hero-title .char {
    transform: translateY(0);
}

/* Mobile optimizacija */
@media (max-width: 768px) {
    .slide {
        padding: 110px 0.75rem 120px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 0.4rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-title .char {
        transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 100px 0.75rem 110px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 6.5vw, 2rem);
        margin-bottom: 0.3rem;
        text-align: center;
    }
}

/* Stagger delays */
.slide.active .char:nth-child(1) { transition-delay: 0.05s; }
.slide.active .char:nth-child(2) { transition-delay: 0.08s; }
.slide.active .char:nth-child(3) { transition-delay: 0.11s; }
.slide.active .char:nth-child(4) { transition-delay: 0.14s; }
.slide.active .char:nth-child(5) { transition-delay: 0.17s; }
.slide.active .char:nth-child(6) { transition-delay: 0.2s; }
.slide.active .char:nth-child(7) { transition-delay: 0.23s; }
.slide.active .char:nth-child(8) { transition-delay: 0.26s; }
.slide.active .char:nth-child(9) { transition-delay: 0.29s; }
.slide.active .char:nth-child(10) { transition-delay: 0.32s; }
.slide.active .char:nth-child(11) { transition-delay: 0.35s; }
.slide.active .char:nth-child(12) { transition-delay: 0.38s; }

.highlight {
    color: var(--neon);
    text-shadow: 0 0 50px var(--neon-glow);
}

/* PODNASLOV */
.hero-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(1.2rem, 2.5vh, 1.5rem);
    max-width: min(600px, 90vw);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.4s;
}

.slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.2vw, 1.1rem);
        text-align: center;
        margin: 0 auto 0.8rem;
        line-height: 1.4;
    }
}

/* Features Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(0.8rem, 2vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.6s;
}

@media (max-width: 768px) {
    .features-grid {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
}

.slide.active .features-grid {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    background: rgba(30, 35, 48, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 0.9rem;
        border-radius: 12px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    border-color: rgba(212, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 255, 0, 0.15);
}

.card-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    margin-bottom: 1rem;
    fill: none;
    stroke: var(--neon);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

@media (max-width: 768px) {
    .card-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.6rem;
    }
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
}

.card-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.8rem, 3.5vw, 2.5rem);
    background: var(--neon);
    color: var(--dark-1);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    box-shadow: 0 10px 40px rgba(212, 255, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.slide.active .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.8s, transform 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 255, 0, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-1);
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========== BOTTOM CONTROLS ========== */
.bottom-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(1.2rem, 3vh, 2rem) clamp(1rem, 3vw, 2rem);
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
    z-index: 100;
}

.progress-container {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .progress-container {
        height: 2px;
    }
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon), var(--accent));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 15px var(--neon-glow);
}

.slide-counter {
    font-family: 'Space Grotesk', monospace;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.slide-counter .current {
    color: var(--neon);
    font-weight: 700;
}

.slide-nav {
    display: flex;
    gap: 0.6rem;
}

@media (max-width: 768px) {
    .slide-nav {
        gap: 0.4rem;
    }
}

.nav-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-bullet {
        width: 8px;
        height: 8px;
    }
}

.nav-bullet:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.nav-bullet.active {
    background: var(--neon);
    box-shadow: 0 0 15px var(--neon-glow);
}

.arrow-controls {
    display: flex;
    gap: 0.5rem;
}

.arrow-btn {
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    fill: none;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: rgba(212, 255, 0, 0.1);
    border-color: var(--neon);
    transform: scale(1.1);
}

.arrow-btn:hover svg {
    stroke: var(--neon);
}

@media (max-width: 768px) {
    .bottom-controls {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }

    .slide-counter {
        display: none;
    }

    .arrow-controls {
        gap: 0.3rem;
    }
    
    .arrow-btn {
        width: 36px;
        height: 36px;
    }
    
    .arrow-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ========== DODATNE SEKCIJE - NEON/DARK TEMA ========== */

/* Opšti stilovi za sekcije */
.section-content {
    padding: 6rem 2rem;
    background: var(--dark-1);
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: var(--dark-2);
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4rem;
}

/* ========== PRICING SEKCIJA ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--dark-2);
    border: 1px solid rgba(212, 255, 0, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon);
    box-shadow: 0 20px 60px rgba(212, 255, 0, 0.2);
}

.pricing-featured {
    border-color: var(--neon);
    background: linear-gradient(135deg, rgba(212, 255, 0, 0.05) 0%, var(--dark-2) 100%);
    box-shadow: 0 10px 40px rgba(212, 255, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: var(--dark-1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.feature-icon {
    color: var(--neon);
    margin-right: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--neon);
    color: var(--neon);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--neon);
    color: var(--dark-1);
    box-shadow: 0 0 30px rgba(212, 255, 0, 0.5);
}

.pricing-btn-featured {
    background: var(--neon);
    color: var(--dark-1);
}

.pricing-btn-featured:hover {
    background: transparent;
    color: var(--neon);
}

/* ========== WHY US SEKCIJA ========== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 1.05rem;
}

.list-icon {
    color: var(--neon);
    margin-right: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-image {
    height: 500px;
    background: linear-gradient(135deg, var(--neon) 0%, var(--accent) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.2) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

/* ========== PROJEKTI SEKCIJA ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 450px;
    cursor: pointer;
    background: var(--dark-2);
    border: 1px solid rgba(212, 255, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.project-card:hover {
    border-color: var(--neon);
    box-shadow: 0 20px 60px rgba(212, 255, 0, 0.15);
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.8);
}

.project-card:hover .project-img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.95) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(30%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 0.5rem;
}

.project-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-link {
    color: var(--neon);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* ========== PROCESS SEKCIJA ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--dark-3);
    border: 1px solid rgba(212, 255, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.15);
}

.process-card-full {
    grid-column: span 3;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(212, 255, 0, 0.2);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 0.75rem;
}

.process-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========== FAQ SEKCIJA ========== */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 100px;
    text-align: center;  /* <-- NOVO */
}

.faq-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--neon);
    color: var(--dark-1);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: transparent;
    color: var(--neon);
    border: 2px solid var(--neon);
    box-shadow: 0 0 30px rgba(212, 255, 0, 0.3);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 255, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon);
}

.faq-question {
    width: 100%;
    background: var(--dark-2);
    border: none;
    color: #ffffff;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-3);
    color: var(--neon);
}

.faq-arrow {
    color: var(--neon);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--dark-1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1.5rem;
    line-height: 1.8;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark-3);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 255, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon);
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(212, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--neon);
    color: var(--dark-1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 255, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 255, 0, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .why-grid,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-header {
        position: static;
    }
    
    .why-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-content {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-card-full {
        grid-column: span 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Za male ekrane (mobilni) */
@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-card-full {
        grid-column: 1;
    }
}

/* ========== SCROLL SECTIONS WRAPPER ========== */
.scroll-sections {
    position: relative;
    z-index: 10;
    background: var(--dark-1);
    margin-top: 100vh;
}
