:root {
    --bg-color: #020617;
    --accent-color: #6366f1;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(15, 23, 42, 0.7);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    color: var(--text-main);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* NOVA NAVIGACIJA */
nav {
    width: 100%;
    max-width: 1100px;
    padding: 2rem 5%;
    display: flex;
    justify-content: flex-end; /* Pomera dugme desno */
    box-sizing: border-box;
    position: absolute;
    top: 0;
}

.blog-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.blog-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.container {
    max-width: 1100px;
    width: 90%;
    margin: 8rem auto 4rem auto; /* Povećan margin top zbog navigacije */
    padding: 4rem;
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 40px;
}

.tag {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
}

h1 { 
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 30%, #64748b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 850px;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.section-header {
    font-size: 1.8rem;
    margin: 4rem 0 2rem 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header::before {
    content: "";
    width: 4px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 10px;
}

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

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.card h3 { color: #fff; margin-top: 0; font-size: 1.4rem; }
.card p { color: var(--text-dim); line-height: 1.7; font-size: 1rem; }

.why-us {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    padding: 3rem;
    border-radius: 30px;
    margin-top: 4rem;
    border: 1px solid var(--border);
}

footer { padding: 4rem 0; color: #475569; font-size: 0.9rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .container { padding: 2rem; }
    nav { justify-content: center; }
}
/* Specifično za Blog Post stranice */
.blog-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    max-width: 850px;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
    max-width: 850px;
}

ul li {
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 2.5rem;
    margin: 3rem 0;
    max-width: 900px;
}
