/*
 * KROJAČ – Master CSS
 * Font: Montserrat
 * Colors: #111 dark | #1A56FF blue | #FF5500 orange | #444 body | #767 muted | #F5F5F5 bg-light
 */

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

p { line-height: 1.7; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── LAYOUT ────────────────────────────────────────────────────────────────── */
.k-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 768px) {
    .k-container { padding: 0 20px; }
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────────── */
.k-display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
}
/* Page header hero title — consistent on all pages */
.k-page-header .k-display {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin: 0;
}
/* Section display sizes */
.k-display--xl  { font-size: clamp(2.5rem, 6vw, 5rem);   line-height: 1;    margin-bottom: 32px; }
.k-display--lg  { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; margin-bottom: 32px; }
.k-display--md  { font-size: clamp(2rem, 4vw, 3.5rem);   line-height: 1.05; margin-bottom: 32px; }
.k-display--sm  { font-size: clamp(2rem, 3vw, 3rem);     line-height: 1.1;  margin-bottom: 12px; }
/* Color accents */
.k-blue   { color: #1A56FF; }
.k-orange { color: #FF5500; }
.k-gray   { color: #9ca3af; }
.k-muted  { color: #767676; }

.k-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #767676;
    margin-bottom: 10px;
}
.k-label--24 { margin-bottom: 24px; }

/* Description text under page header h1 */
.k-page-header-desc {
    color: #444;
    font-size: 0.875rem;
    margin-top: 10px;
    max-width: 680px;
    line-height: 1.5;
}
/* Generic body text blocks */
.k-body      { color: #444; line-height: 1.8; }
.k-body--lg  { font-size: 1.1rem; }
.k-body--dark{ color: #111; }
/* Centered button wrapper */
.k-btn-center { text-align: center; margin-top: 48px; }
/* Relative positioning helper */
.k-relative  { position: relative; }
.k-divider {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #111;
    flex-shrink: 0;
}

/* ─── HEADER ────────────────────────────────────────────────────────────────── */
.k-site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 100px;
    background: #fff;
}
.k-header-inner {
    height: 100px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.k-site-logo { height: 32px; width: auto; }

.k-main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}
@media (max-width: 1038px) {
    .k-main-nav { gap: 18px; }
}

.k-nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #000;
    position: relative;
    cursor: pointer;
}
.k-nav-link:hover::after,
.k-nav-link.active::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: #000;
}
.k-nav-link.active::after { background: #1A56FF; height: 3px; bottom: -7px; }

.k-header-cta {
    margin-left: 10px;
    display: inline-block;
    padding: 14px 26px;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
.k-header-cta:hover { opacity: 0.85; color: #fff; }

/* Burger */
.k-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.k-burger-line {
    display: block;
    width: 26px;
    height: 2px;
    background: #111;
    transition: all 0.3s;
}

/* Mobile menu */
.k-mobile-menu {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    max-width: 360px;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.k-mobile-menu.is-open { transform: translateX(0); }
.k-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.k-mobile-overlay.is-open { display: block; }

.k-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #eee;
}
.k-mobile-title { font-weight: 700; font-size: 18px; }
.k-mobile-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    color: #000;
}
.k-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
}
.k-mobile-link {
    display: block;
    padding: 14px 4px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #f5f5f5;
}
.k-mobile-link.active { color: #1A56FF; }
.k-mobile-cta {
    display: block;
    margin-top: 24px;
    padding: 14px 26px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 991px) {
    .k-main-nav { display: none !important; }
    .k-burger { display: flex !important; }
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.k-footer {
    background: #111;
    color: #fff;
    padding: 64px 0 32px;
    border-top: 1px solid #1f2937;
}
.k-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
@media (max-width: 900px) {
    .k-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .k-footer-grid { grid-template-columns: 1fr; }
}

.k-footer-brand { }
.k-footer-logo { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.k-footer-desc { color: #9ca3af; font-size: 14px; line-height: 1.7; margin: 16px 0 24px; }
.k-footer-social { display: flex; gap: 12px; }
.k-footer-icon {
    width: 36px; height: 36px;
    border: 1px solid #4b5563;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.k-footer-icon:hover { border-color: #1A56FF; color: #1A56FF; }

.k-footer-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 24px;
}
.k-footer-col ul { list-style: none; }
.k-footer-col li { margin-bottom: 12px; }
.k-footer-col a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.k-footer-col a:hover { color: #fff; }

.k-footer-cat { display: flex; justify-content: flex-end; align-items: flex-start; }
.k-footer-cat img { width: 160px; height: auto; object-fit: contain; }

.k-footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.k-footer-bottom p { color: #6b7280; font-size: 12px; }
.k-footer-bottom-link { color: #6b7280; font-size: 12px; text-decoration: none; transition: color 0.2s; }
.k-footer-bottom-link:hover { color: #fff; }

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.k-btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
    border: none;
}
.k-btn-primary:hover { opacity: 0.85; color: #fff; }

.k-btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #111;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.k-btn-outline:hover { background: #111; color: #fff; }

.k-btn-white {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.k-btn-white:hover { background: #fff; color: #111; }

/* ─── ANIMATIONS ────────────────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PAGE OFFSET (fixed header) ────────────────────────────────────────────── */
.k-page { padding-top: 100px; }

/* ─── PAGE HEADER SECTION ───────────────────────────────────────────────────── */
.k-page-header {
    padding: 24px 0 48px;
    border-bottom: 1px solid #f0f2f5;
}
.k-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #767676;
}
.k-breadcrumb a { color: #767676; text-decoration: none; }
.k-breadcrumb a:hover { color: #1A56FF; }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.k-hero {
    padding: 80px 0 100px;
    overflow: hidden;
}
.k-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .k-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.k-hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 32px;
}
.k-hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #767676;
    margin-bottom: 24px;
}
.k-hero-text { color: #444; font-size: 18px; line-height: 1.7; margin-bottom: 40px; max-width: 460px; }
.k-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

.k-hero-image {
    position: relative;
    min-height: 560px;
}
.k-hero-photo {
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 2rem 2rem 2rem 0;
    object-fit: cover;
    object-position: top;
    display: block;
}
.k-hero-accent-1 {
    position: absolute;
    bottom: -16px; left: -16px;
    width: 96px; height: 4px;
    background: #1A56FF;
}
.k-hero-accent-2 {
    position: absolute;
    bottom: -16px; left: 80px;
    width: 32px; height: 4px;
    background: #FF5500;
}

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.k-stats {
    padding: 64px 0;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
}
.k-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .k-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.k-stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.k-stat-number.blue { color: #1A56FF; }
.k-stat-label { font-size: 13px; color: #767676; font-weight: 500; }

/* ─── APPROACH (problem/solution) ───────────────────────────────────────────── */
.k-approach { padding: 80px 0; }
.k-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .k-approach-grid { grid-template-columns: 1fr; gap: 40px; }
}
.k-big-word {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: #F0F0F0;
    padding-bottom: 120px;
    font-family: 'Montserrat', sans-serif;
}
.k-big-word-overlay {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    color: #111;
    font-family: 'Montserrat', sans-serif;
}
.k-accent-box {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
}
.k-accent-icon {
    width: 64px; height: 64px;
    border: 2px solid #FF5500;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ─── SERVICES GRID ─────────────────────────────────────────────────────────── */
.k-services-section { padding: 64px 0; background: #F5F5F5; }
.k-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e5e7eb;
    margin-top: 64px;
}
@media (max-width: 768px) {
    .k-services-grid { grid-template-columns: 1fr; }
}
.k-service-card {
    background: #fff;
    padding: 48px;
    transition: background 0.3s;
    cursor: default;
}
.k-service-card:hover { background: #111; }
.k-service-card:hover .k-service-title,
.k-service-card:hover .k-service-subtitle-text { color: #fff; }
.k-service-card:hover .k-service-desc { color: #d1d5db; }
.k-service-card:hover .k-service-tag { border-color: #374151; color: #6b7280; }

.k-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}
.k-service-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #E0E0E0;
    font-family: 'Montserrat', sans-serif;
}
.k-service-card:hover .k-service-num { color: #333; }
.k-service-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #767676;
    border: 1px solid #e5e7eb;
    padding: 4px 12px;
    transition: all 0.3s;
}
.k-service-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}
.k-service-subtitle-text { color: #1A56FF; font-size: 13px; margin-bottom: 24px; transition: color 0.3s; }
.k-service-desc { color: #444; font-size: 14px; line-height: 1.7; transition: color 0.3s; }

/* ─── CLIENTS ───────────────────────────────────────────────────────────────── */
.k-clients-section { padding: 80px 0; }
.k-clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
@media (max-width: 900px) {
    .k-clients-grid { grid-template-columns: 1fr; gap: 40px; }
}
.k-clients-photo {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}
.k-clients-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.k-client-tag {
    font-size: 12px;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    color: #444;
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
}
.k-client-tag:hover { border-color: #1A56FF; color: #1A56FF; }

/* ─── CTA SECTION ───────────────────────────────────────────────────────────── */
.k-cta-dark { background: #111; padding: 80px 0; }
.k-cta-dark .k-label { color: #6b7280; }
.k-cta-inner { max-width: 720px; }
.k-cta-title { color: #fff; }
.k-cta-desc  { color: #9ca3af; font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; max-width: 560px; }

/* ─── USLUGE PAGE ───────────────────────────────────────────────────────────── */
.k-service-segment { padding: 56px 0; }
.k-service-segment.gray { background: #F5F5F5; }

.k-segment-head { margin-bottom: 64px; }
.k-segment-head-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.k-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #e5e7eb;
    margin-bottom: -1px;
}
@media (max-width: 768px) {
    .k-service-block { grid-template-columns: 1fr; }
}
.k-sb-main { padding: 64px; border-right: 1px solid #e5e7eb; }
.k-sb-aside { padding: 64px; background: #F5F5F5; }
.k-sb-aside.dark { background: #111; color: #fff; }

@media (max-width: 768px) {
    .k-sb-main, .k-sb-aside { padding: 40px 24px; border-right: none; border-top: 1px solid #e5e7eb; }
}

.k-service-num-lg {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: #F0F0F0;
    display: block;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}
.k-service-num-lg.gray { color: #E0E0E0; }
/* Wide container variant (no side padding, wider max) */
.k-container--wide { padding-left: 0; padding-right: 0; max-width: 1440px; }
/* Orange CTA button */
.k-btn-orange { background: #FF5500; }
/* Program colors */
.k-program-name.light { color: #fff; }
.k-program-desc.light { color: #9ca3af; }
/* Flex row for buttons */
.k-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
/* Box item arrow */
.k-box-item::before { content: '→'; color: #1A56FF; margin-right: 10px; }
/* Inov card meta line */
.k-inov-meta { font-size: 13px; margin-bottom: 16px; }
.k-inov-line { width: 32px; height: 2px; margin-bottom: 24px; }
.k-inov-line.orange { background: #FF5500; }
.k-inov-line.blue   { background: #1A56FF; }
/* Section header spacing */
.k-section-head { margin-bottom: 48px; }
.k-service-h { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.k-service-sub { font-size: 13px; color: #1A56FF; margin-bottom: 32px; }
.k-service-sub.orange { color: #FF5500; }
.k-divider-blue { width: 32px; height: 2px; background: #1A56FF; margin-bottom: 32px; }
.k-divider-orange { width: 32px; height: 2px; background: #FF5500; margin-bottom: 32px; }
.k-service-body { color: #444; line-height: 1.8; }

.k-aside-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #767676;
    margin-bottom: 32px;
}
.k-aside-title.light { color: #6b7280; }

.k-check-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.k-check-list li { display: flex; align-items: flex-start; gap: 12px; }
.k-check-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1A56FF;
    margin-top: 8px;
    flex-shrink: 0;
}
.k-check-dot.orange { background: #FF5500; }
.k-check-text { font-size: 14px; color: #444; line-height: 1.7; }
.k-check-text.light { color: #d1d5db; }

.k-program-list { display: flex; flex-direction: column; gap: 24px; }
.k-program-item { border-left: 2px solid #FF5500; padding-left: 16px; }
.k-program-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.k-program-desc { font-size: 13px; color: #767676; line-height: 1.6; }

.k-syntesta-block {
    border: 1px solid #e5e7eb;
    border-top: 0;
    padding: 64px;
}
.k-syntesta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}
@media (max-width: 768px) {
    .k-syntesta-grid { grid-template-columns: 1fr; gap: 32px; }
    .k-syntesta-block { padding: 40px 24px; }
}
.k-box-list { display: flex; flex-direction: column; gap: 12px; }
.k-box-item {
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 14px;
    color: #444;
}

/* ─── NAŠA PRIČA PAGE ───────────────────────────────────────────────────────── */
.k-prica-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}
@media (max-width: 900px) {
    .k-prica-grid { grid-template-columns: 1fr; gap: 40px; }
}
.k-prica-photo {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2rem 2rem 2rem 0;
    object-fit: cover;
    object-position: top;
}
.k-prica-text { display: flex; flex-direction: column; gap: 16px; color: #444; line-height: 1.8; }

/* Timeline */
.k-timeline { padding: 64px 0; background: #F5F5F5; }
.k-timeline-inner { position: relative; }
.k-timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: #e5e7eb;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .k-timeline-line { left: 0; transform: none; }
}
.k-timeline-items { display: flex; flex-direction: column; }
.k-timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}
@media (max-width: 768px) {
    .k-timeline-item { grid-template-columns: 1fr; padding-left: 24px; }
}
.k-timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #1A56FF;
    transform: translateX(-50%);
    border: 2px solid #fff;
}
@media (max-width: 768px) {
    .k-timeline-dot { left: -6px; transform: none; }
}
.k-timeline-left { text-align: right; padding-right: 40px; }
.k-timeline-right { padding-left: 40px; }
@media (max-width: 768px) {
    .k-timeline-left { text-align: left; padding-right: 0; }
    .k-timeline-right { padding-left: 0; }
    .k-timeline-empty { display: none; }
}
.k-tl-year {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.k-tl-year.blue { color: #1A56FF; }
.k-tl-year.orange { color: #FF5500; }
.k-tl-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.k-tl-desc { font-size: 14px; color: #444; line-height: 1.7; }

/* Awards */
.k-awards { padding: 80px 0; }
.k-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #f3f4f6;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .k-awards-grid { grid-template-columns: 1fr; }
}
.k-award-card {
    background: #fff;
    padding: 32px;
    transition: background 0.3s;
}
.k-award-card:hover { background: #111; }
.k-award-card:hover .k-award-name,
.k-award-card:hover .k-award-desc { color: #fff; }
.k-award-card:hover .k-award-org { color: #6b7280; }
.k-award-icon {
    width: 32px; height: 32px;
    border: 2px solid #1A56FF;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.k-award-name { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; transition: color 0.3s; }
.k-award-desc { font-size: 13px; color: #444; line-height: 1.6; margin-bottom: 16px; transition: color 0.3s; }
.k-award-org { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #767676; transition: color 0.3s; }

/* Inovacije */
.k-inovacije { padding: 64px 0; background: #F5F5F5; }
.k-inov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e5e7eb;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .k-inov-grid { grid-template-columns: 1fr; }
}
.k-inov-card { background: #fff; padding: 56px; }
.k-inov-top { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.k-inov-num-lg {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #F0F0F0;
    font-family: 'Montserrat', sans-serif;
}
.k-inov-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 4px 12px;
}
.k-inov-badge.orange { background: #FF5500; }
.k-inov-badge.blue { background: #1A56FF; }

/* Tim */
.k-tim { padding: 80px 0; }
.k-tim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f3f4f6;
    margin-top: 48px;
}
@media (max-width: 768px) {
    .k-tim-grid { grid-template-columns: 1fr; }
}
.k-tim-card { background: #fff; padding: 56px; }
.k-tim-head { display: flex; align-items: flex-start; gap: 24px; margin-bottom: 32px; }
.k-tim-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}
.k-tim-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.k-tim-name { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.k-tim-role { font-size: 13px; color: #1A56FF; margin-bottom: 8px; }
.k-tim-role.orange { color: #FF5500; }
.k-tim-linkedin { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: #767676; text-decoration: none; }
.k-tim-linkedin:hover { color: #1A56FF; }
.k-tim-divider { width: 32px; height: 2px; background: #1A56FF; margin-bottom: 24px; }
.k-tim-divider.orange { background: #FF5500; }
.k-tim-bio { color: #444; font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.k-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.k-tag { font-size: 12px; border: 1px solid #e5e7eb; padding: 4px 12px; color: #444; }

/* ─── BLOG STYLES (from main.css) ───────────────────────────────────────────── */
.k-blog-page { padding-bottom: 80px; }
.k-post-page { padding-bottom: 80px; max-width: 1600px; margin-left: auto; margin-right: auto; }

.k-categories-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}
.k-cat {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 4px 0;
    position: relative;
}
.k-cat.is-active { color: #000; font-weight: 700; }
.k-cat.is-active::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 2px;
    background: #1A56FF;
}
.k-sep { color: #ccc; }

.k-group { margin-bottom: 48px; }
.k-group.is-hidden { display: none; }

.k-feature-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #F5F5F5;
    margin-bottom: 2px;
}
@media (max-width: 900px) {
    .k-feature-post { grid-template-columns: 1fr; }
}
.k-feature-text {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.k-feature-media {
    display: block;
    aspect-ratio: 680/450;
    overflow: hidden;
}
.k-feature-media img { width: 100%; height: 100%; object-fit: cover; }

.k-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2px;
}
@media (max-width: 768px) {
    .k-grid { grid-template-columns: 1fr; }
}

.k-card { display: flex; flex-direction: column; }

.k-thumb {
    display: block;
    aspect-ratio: 680/450;
    overflow: hidden;
    margin-bottom: 20px;
}
.k-thumb img { width: 100%; height: 100%; object-fit: cover; }

.k-post-date { font-size: 12px; color: #767676; margin-bottom: 8px; font-weight: 500; }
.k-post-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; line-height: 1.15; }
.k-post-title a { text-decoration: none; color: #000; }
.k-card-title { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 900; margin: 8px 0 12px; font-family: 'Montserrat', sans-serif; line-height: 1.2; }
.k-card-title a { text-decoration: none; color: #000; }
.k-card-title a:hover, .k-post-title a:hover { color: #1A56FF; }

.k-post-excerpt { color: #444; font-size: 15px; line-height: 1.6; margin-bottom: 32px; }
.k-card-excerpt { color: #444; font-size: 14px; line-height: 1.6; margin-bottom: 32px; }

.k-author { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.k-author-label { font-size: 11px; color: #767676; }
.k-author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
    display: flex; align-items: center; justify-content: center;
}
.k-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.k-author-initials { font-size: 11px; font-weight: 700; color: #767676; }
.k-author-name { font-size: 13px; font-weight: 600; }

/* Blog load-more */
.k-loadmore-wrap { text-align: center; padding: 48px 0 0; }
.k-btn-load {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: none;
    border: 2px solid #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}
.k-btn-load:hover { background: #111; color: #fff; }
.k-spinner { display: none; width: 16px; height: 16px; border: 2px solid #999; border-top-color: #111; border-radius: 50%; animation: spin 0.6s linear infinite; }
.k-btn-load.loading .k-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Blog buttons */
.k-btn { display: inline-block; padding: 12px 24px; background: #000; color: #fff; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; }
.k-btn--sm { display: inline-block; padding: 10px 20px; background: #000; color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; cursor: pointer; font-family: 'Montserrat', sans-serif; margin-top: auto; }
.k-btn--underline { position: relative; background: none; color: #000; padding: 0; letter-spacing: 0.05em; }
.k-btn-underline { display: block; width: 120px; height: 3px; background: #2d40ff; margin-top: 10px; }

.k-sentinel { height: 1px; }

.k-hero-title.blog { font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; margin-bottom: 32px; font-family: 'Montserrat', sans-serif; }

/* ─── BLOG SHOW ─────────────────────────────────────────────────────────────── */
.k-post-header { padding: 48px 0 40px; border-bottom: 1px solid #eee; margin-bottom: 48px; }
.k-post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 48px; }
.k-post-body { max-width: 780px; line-height: 1.9; color: #333; }
.k-post-body p { margin-bottom: 1.5rem; }
.k-post-body h2 { font-size: 1.6rem; font-weight: 900; margin: 2rem 0 1rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; }
.k-post-body h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.75rem; }
.k-post-body img { max-width: 100%; margin: 1.5rem 0; }
.k-post-body a { color: #1A56FF; }

/* ─── INFINITE SCROLL (references) ──────────────────────────────────────────── */
.k-infinite-scroll { overflow: hidden; white-space: nowrap; padding: 24px 0; }
.k-scroll-track { display: inline-flex; gap: 32px; animation: scroll-left 30s linear infinite; }
.k-scroll-item img { height: 48px; width: auto; filter: grayscale(1); opacity: 0.5; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ADMIN (ne diraj) ─────────────────────────────────────────────── */
/* Admin stilovi su u Filament-u i app.css, ne menjati ovde */
