@font-face {
    font-family: MainFont;
    /* set name */
    src: url(../fonts/static/PlusJakartaSans-Bold.ttf);
    /* url of the font */
}

@font-face {
    font-family: SubHeadFont;
    /* set name */
    src: url(../fonts/static/PlusJakartaSans-Regular.ttf);
    /* url of the font */
}

@font-face {
    font-family: MotoFont;
    /* set name */
    src: url(../fonts/Instrument/InstrumentSerif-Regular.ttf);
    /* url of the font */
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background: linear-gradient(180deg, #0e111d, #0b0c10);
    color: #d8d8d8;
}



:root {

    --primary-color: #d8d8d8;
    --secondary-color: #5cd1e6;
    --accent-color: #ade2eb;

}



/* SAME CLASSES */
.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

h2 {
    font-size: 32px;
}

.font-main {
    font-family: MainFont;
}

.font-moto {
    font-family: MotoFont;
}

.font-submain {
    font-family: SubHeadFont;
}

.blue-color {
    color: var(--accent-color);
}

.glow-left {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(500px 350px at 5% 50%,
            rgba(58, 124, 237, 0.28) 0%,
            rgba(58, 186, 237, 0.12) 42%,
            rgba(58, 94, 237, 0) 82%);

}

.glow-soft {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.glow-right-center {
    position: absolute;
    left: 0;
    width: 100%;
    height: 900px;
    /* visina „fleka“ */
    top: 0px;
    /* pomeraš ga nadole ovde */
    pointer-events: none;
    z-index: 0;
    /* sloj ispod sadržaja, ali iznad pozadine sekcije */
    background: radial-gradient(300px 300px at 70% 30%,
            rgba(58, 124, 237, 0.28) 0%,
            rgba(58, 186, 237, 0.12) 42%,
            rgba(58, 94, 237, 0) 82%);
}

.glow-right-center {
    position: absolute;
    left: 0;
    width: 100%;
    height: 900px;
    /* visina „fleka“ */
    top: 0px;
    /* pomeraš ga nadole ovde */
    pointer-events: none;
    z-index: 0;
    /* sloj ispod sadržaja, ali iznad pozadine sekcije */
    background: radial-gradient(300px 300px at 70% 30%,
            rgba(58, 124, 237, 0.28) 0%,
            rgba(58, 186, 237, 0.12) 42%,
            rgba(58, 94, 237, 0) 82%);
}

.color-blue {
    color: var(--secondary-color);
}

.hover-blue {
    transition: 0.1s ease;
}

.hover-blue:hover {
    color: var(--accent-color);
}

/* NAVBAR */
nav {
    margin: 10px 0px;
}

#logo {
    width: 50%;
}

#logo img {
    width: 10%;
}

#navBar {
    text-align: center;
    padding: 15px 20px;
    border-radius: 25px;
}

#navBar ul li {
    display: inline;
    font-size: 16px;
    margin-left: 10px;
}

#navBar ul li a {
    text-decoration: none;
    color: #d8d8d8;
    transition: 0.2s ease;
}

#navBar ul li a:hover {
    text-decoration: none;
    color: #317dbb;
}

/* HERO SECTIOn */
#main {
    position: relative;
    overflow: hidden;
    height: 80vh;
}

#over-heading {
    margin-bottom: 35px;
}

#hero-section {
    margin-top: 145px;
    color: #d8d8d8;
    display: block;
    text-align: center;
}

#hero-section h1 {
    line-height: 55px;
    font-size: 62px;
}

#hero-section p {
    margin-top: 25px;
    font-size: 16px;
}

#zadovoljni-klijenti-section-logo {
    display: inline;
}

.btn-primary-hero {
    padding: 12px 14px;
    /* TB LR */
    border-radius: 10px;
    border: 1px solid color-mix(in oklab, var(--accent-color, #4da3ff) 25%, transparent);
    background: transparent;
    color: var(--accent-color, #4da3ff);
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
    display: inline-block;
    box-sizing: border-box;
    transition: padding .25s ease, background-color .25s ease, border-color .25s ease;
    font-family: SubHeadFont;
}

.btn-primary-hero:hover {
    padding: 15px 18px;
    /* TB LR – dve vrednosti, kao i u base */
    background: color-mix(in oklab, var(--accent-color, #4da3ff) 12%, transparent);
    border-color: color-mix(in oklab, var(--accent-color, #4da3ff) 45%, transparent);
}

#navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#logo {
    width: auto;
}

#logo img {
    width: 120px;
    max-width: 100%;
}

/* Hamburger dugme (desktop: skriven) */
.hamburger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid color-mix(in oklab, var(--accent-color, #4da3ff) 25%, transparent);
    background: transparent;
    cursor: pointer;
}

.hamburger:focus-visible {
    outline: 2px solid var(--accent-color, #4da3ff);
    outline-offset: 2px;
}

.hamburger-bar {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--accent-color, #4da3ff);
    transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.hamburger-bar:nth-child(1) {
    top: 12px;
}

.hamburger-bar:nth-child(2) {
    top: 19px;
}

.hamburger-bar:nth-child(3) {
    top: 26px;
}

/* Stanje otvoreno (X animacija) */
.hamburger.is-open .hamburger-bar:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.hamburger.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger-bar:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}
/*Tim*/

.team-section {
    padding: 80px 20px;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Heading */
.team-heading {
    text-align: center;
    margin-bottom: 50px;
}

.team-kicker {
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-weight: 500;
}

.team-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.team-subtitle {
    max-width: 520px;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #05272c;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

/* Slika */
.team-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.img-up {
    object-position: 50% -60px;
}

.team-card:hover .team-image img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* Sadržaj */
.team-content {
    padding: 22px 22px 26px;
}

.team-name {
    font-size: 22px;
    margin-bottom: 4px;
}

.team-role {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.team-bio {
    color: #e3e3e3;
    font-size: 15px;
    line-height: 1.65;
}

#Milan_Profilna_Slika
{
    object-position:center 1px;
}
/* Mobilni raspored menija */
@media (max-width: 768px) {
    .team-grid {
        display: block;
    }

    .team-card {
        width: 50%;
        margin: 25px auto;
    }
    /* prikaži hamburger */
    .hamburger {
        display: inline-block;
    }

    /* navBar kao panel koji se otvara */
    #navBar {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        text-align: left;
        /* lakše za čitanje na mobilu */
        border-radius: 16px;
        padding: 0;
        /* padding ide kad je open */
        background: rgba(12, 16, 22, .85);
        backdrop-filter: saturate(140%) blur(6px);
        border: 1px solid color-mix(in oklab, var(--accent-color, #4da3ff) 18%, transparent);
        box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
        overflow: hidden;
        max-height: 0;
        /* zatvoren panel */
        transition: max-height .3s ease, padding .25s ease;
    }

    #navBar.open {
        padding: 12px 14px;
        max-height: 340px;
        /* dovoljan prostor za nekoliko linkova */
    }

    #navBar ul {
        margin: 0;
        padding: 6px 0;
    }

    #navBar ul li {
        display: block;
        margin: 0;
    }

    #navBar ul li a {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
    }

    #navBar ul li a:hover {
        background: color-mix(in oklab, var(--accent-color, #4da3ff) 10%, transparent);
        color: #d8d8d8;
    }

    /* Hero da ne preseca meni na malim ekranima */
    nav {
        position: relative;
        z-index: 10;
    }
}
@media (max-width: 540px) {
    .team-card {
        width: 80%;
        margin: 25px auto;
    }
}

/* Desktop ostaje tvoj stil: horizontalni meni */
@media (min-width: 769px) {
    #navBar {
        position: static;
        max-height: none !important;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    #navBar ul li {
        display: inline;
    }
}

/* CAROSEUL */

.carousel {
    /* Podesi broj stavki i brzinu */
    --items: 8;
    --carousel-duration: 30s;

    /* Dimenzije trake */
    --track-width: min(90vw, 1200px);
    --logo-height: 72px;
    /* visina “reda” logotipa */
    --logo-width: 180px;
    /* širina slota po logou (fiksno zbog animacije) */
    --gap: 2.5rem;

    position: relative;
    width: var(--track-width);
    height: var(--logo-height);
    overflow: clip;
    mask-image: linear-gradient(to right, transparent, black 8% 92%, transparent);
}

.carousel[reverse]>article {
    animation-direction: reverse;
}

.carousel:hover>article {
    animation-play-state: paused;
}

.carousel>article {
    position: absolute;
    top: 0;
    left: calc(100% + var(--gap));
    width: var(--logo-width);
    height: var(--logo-height);

    display: flex;
    align-items: center;
    justify-content: center;

    /* bez okvira/kartice */
    background: transparent;
    border: 0;

    /* animacija */
    will-change: transform;
    animation: marquee var(--carousel-duration) linear infinite;
    /* kašnjenje po indeksu (isto kao kod tebe) */
    animation-delay: calc(var(--carousel-duration) / var(--items) * var(--i) * -1);
}

/* indeksiranje (koliko imaš <article>, toliko nth-child pravila treba) */
.carousel>article:nth-child(1) {
    --i: 0;
}

.carousel>article:nth-child(2) {
    --i: 1;
}

.carousel>article:nth-child(3) {
    --i: 2;
}

.carousel>article:nth-child(4) {
    --i: 3;
}

.carousel>article:nth-child(5) {
    --i: 4;
}

.carousel>article:nth-child(6) {
    --i: 5;
}

.carousel>article:nth-child(7) {
    --i: 6;
}

.carousel>article:nth-child(8) {
    --i: 7;
}

.carousel img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    /* čuva prirodnu širinu */
    height: auto;
    /* čuva prirodnu visinu */
    object-fit: contain;
    filter: grayscale(1) opacity(.85);
    transition: filter .2s ease;
}

.carousel img:hover {
    filter: grayscale(0) opacity(1);
}

/* pomeraj za pun ciklus (broj * (slot + razmak)) */
@keyframes marquee {
    100% {
        transform: translateX(calc((var(--items) * (var(--logo-width) + var(--gap))) * -1));
    }
}

/* malo brži na širim ekranima (opciono) */


/* general styling */
#paketi,
.pricing,
.pricing * {
    box-sizing: border-box;
}

.pricing {
    position: relative;
    background: radial-gradient(600px 400px at 10% 0%, color-mix(in oklab, var(--accent-2) 14%, transparent), transparent 60%),
        radial-gradient(700px 500px at 100% 10%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 65%),
        var(--bg);
    color: var(--text);
    padding: clamp(56px, 6vw, 55px) 20px;
    overflow: clip;
}

.pricing__container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing__head {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.pricing__head h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
}

.pricing__head p {
    color: var(--muted);
    font-size: clamp(15px, 2.3vw, 18px);
    margin: 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}



.plan {
    position: relative;
    background: linear-gradient(180deg, var(--card), var(--card-2));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    padding: 22px clamp(18px, 2vw, 28px);
    box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    isolation: isolate;
}

.plan:hover {
    transform: translateY(-4px);
    border-color: color-mix(in oklab, var(--accent) 40%, transparent);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .5);
}

/* Najpopularniji */
.plan--pro {
    outline: 1px solid color-mix(in oklab, var(--accent) 35%, transparent);
    transform: translateY(-2px);
}

.plan--pro:hover {
    transform: translateY(-6px);
}

.plan__badge {
    position: absolute;
    top: -12px;
    left: 16px;
    background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 60%, #ff8a8a));
    color: white;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    z-index: 2;
}

.plan__topline {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.plan__name {
    font-size: clamp(20px, 3.2vw, 26px);
    margin: 0 0 6px 0;
}

.plan__desc {
    color: var(--muted);
    margin: 0 0 18px 0;
    font-size: 15px;
}

.plan__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 8px 0 4px 0;
}

.plan__amount {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.plan__cycle {
    color: var(--muted);
    font-size: 14px;
}

.plan__note {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 16px 0;
}

/* Features lista */
.plan__features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: grid;
    gap: 10px;
}

.plan__features li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.45;
}

.chk {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 4px;
    background:
        radial-gradient(9px 9px at 50% 50%, white 48%, transparent 51%) center/0 0 no-repeat,
        linear-gradient(180deg, color-mix(in oklab, var(--accent) 70%, #fff), var(--accent));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
    transform: translateY(2px);
}

/* mala animacija kad hoveruješ celu karticu */
.plan:hover .chk {
    background-size: 16px 16px, auto;
    transition: background-size .3s ease;
}

/* Dugmad */
.btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid color-mix(in oklab, var(--accent) 35%, transparent);
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 14%, transparent), transparent);
    color: var(--text);
    text-decoration: none;
    transition: transform .2s ease, background .3s ease, border-color .3s ease;
    margin-top: 8px;
}

.btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 25%, transparent), transparent);
    border-color: color-mix(in oklab, var(--accent) 60%, transparent);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .18);
}

.btn--outline:hover {
    border-color: color-mix(in oklab, var(--accent) 45%, transparent);
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 10%, transparent), transparent);
}

.plan__link {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.plan__link:hover {
    color: color-mix(in oklab, var(--muted) 50%, var(--text));
}

.plan__meta {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted);
    border-top: 1px dashed rgba(255, 255, 255, .07);
    padding-top: 12px;
}

/* Fokus vidljivost (a11y) */
.plan a:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Malo većeg isticanja Pro dugmeta */
.plan--pro .btn {
    background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
    border-color: color-mix(in oklab, var(--accent) 45%, transparent);
}

/* O NAMA */
#o-nama-section {
    position: relative;
    overflow: visible;
    margin-bottom: 50px;
    margin-top: 100px;
}

#o-nama-wrapper {
    margin-top: 50px;
}

#o-nama-tekst {
    width: 50%;
}

#o-nama-tekst h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

#o-nama-slika {
    width: 40%;
}

#o-nama-slika img {
    border-radius: 25px;
    margin-left: 85px;
    width: 70%;
}

/* NASE USLUGE */

/* KARTICA */
#usluge-wrapper {
    margin-top: 50px;
    gap: 10px;
}

.usluge-card {
    --ink: #0b1c20;
    width: 25%;
    border: 1px solid #065561;
    border-radius: 15px;

    /* Slojeviti gradient za dubinu (radial + linear) */
    background: #0655611e;
    color: #e7eef3;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 22px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background-position .6s ease,
        filter .35s ease;
    background-position: 50% 50%;
}

/* HOVER: blagi lift, jača senka i pomeraj gradijenta za “živu” površinu */
.usluge-card:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(51, 122, 168, 0.3),
        0 16px 36px rgba(32, 62, 87, 0.6);
    border-color: #8ef4ff5e;
    background-position: 60% 40%;
    filter: saturate(1.06) contrast(1.02);
}

/* Slika – bolje kadriranje i fin zoom na hover */
.usluge-card .slika-card {
    overflow: hidden;
}

.usluge-card .slika-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    filter: grayscale(100%);
    transition: transform .5s ease, filter 1s ease;
}

.usluge-card:hover .slika-card img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

/* Tekstualni blokovi */
.naslov-tekst {
    padding: 16px 18px;
}

.naslov-tekst h3,
.naslov-tekst .naslov {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 700;
    color: #f1f7fa;
}

.usluge-card .tekst {
    margin-top: 12px;
    color: rgba(231, 238, 243, 0.9);
    font-size: 14px;
    line-height: 1.55;
}

/* Aktivna varijanta zadržava isti stil teksta (ako je koristiš) */
.usluge-card.active {
    border-color: #8ef3ff;
}

/* ZASTO MI  */
#zasto-mi-section {
    margin: 80px 0px;
}

#zasto-mi,
#o-nama,
#proces-rada,
#nase-usluge {
    text-align: center;
    display: block;
}

.zasto-mi-card {
    width: 25%;
    margin-left: 25px;
}

#zasto-mi-card-wrapper {
    margin-top: 75px;
    display: flex;
    justify-content: space-around;
}

.zasto-mi-ikonica img {
    width: 60px;
}

.zasto-mi-tekst {
    margin-top: 20px;
}

.zasto-mi-tekst h3 {
    font-size: 24px;
    margin-bottom: 10px;
    /* color: var(--secondary-color); */

}

.zasto-mi-tekst p {
    color: #a7a7a7;
}

/* REZULTATI */

.stats-section {
    position: relative;
    isolation: isolate;
    padding: clamp(48px, 6vw, 96px) 24px;
    background: #06232e;
    background: linear-gradient(0deg, rgb(4, 24, 32) 0%, rgb(24, 37, 66) 100%);
    overflow: hidden;
}

/* ukrasni "orb" u gornjem desnom uglu */
/*  */

.stats-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}


.stat {
    margin-left: 70px;
}

.value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(32px, 6.4vw, 56px);
    font-weight: 800;
    line-height: .9;
    letter-spacing: .5px;
}

.value sup {
    font-size: .42em;
    font-weight: 700;
    color: var(--accent);
    translate: 0 -6px;
}

.label {
    margin-top: 10px;
    font-size: clamp(12px, 1.6vw, 14px);
    color: var(--muted);
    letter-spacing: .3px;
}

/* Proces rada */

/* FLEKS KONTEJNER */

.process-basic .wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* KARTICA */
.process-basic .card {
    flex: 1 1 320px;
    /* 3 u redu na širim ekranima, lepo prelomi na užim */
    border: 1px solid rgba(216, 216, 216, .25);
    border-radius: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .03);
}

.process-basic .card.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #0b1c20;
    /* kontrast na sekundarnoj */
}

/* NASLOV RED (broj + naslov) */
#proces-basic {
    margin-top: 50px;
}

#proces-basic .wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 50px;
    margin-bottom: 75px;
}

/* kartica */
#proces-basic .card {
    flex: 1 1 320px;
    /* 3 u redu na širokim, prelama na užim */
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(216, 216, 216, 0.25);
    background: rgba(20, 40, 41, 0.3);
    color: var(--primary-color, #d8d8d8);
    transition: 0.5s ease-in;
}

#proces-basic .card:hover {
    flex: 1 1 320px;
    /* 3 u redu na širokim, prelama na užim */
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(216, 216, 216, 0.25);
    background: rgba(46, 91, 94, 0.3);
    color: var(--primary-color, #d8d8d8);
}

#proces-basic .card.active {
    background: var(--secondary-color, #5cd1e6);
    border-color: var(--secondary-color, #5cd1e6);
    color: #0b1c20;
    /* kontrast na sekundarnoj */
}

/* red: broj + naslov */
#proces-basic .row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

#proces-basic .chip {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent-color, #ade2eb);
    color: #0b1c20;
    font-weight: 700;
    font-size: 12px;
    flex: 0 0 22px;
}

#proces-basic .title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    /* preuzima boju kartice */
}

#proces-basic p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
    color: inherit;
}

/* FOOTER */

.site-footer {
    color: var(--primary-color, #eaeaea);
    padding: 48px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
    background: transparent;
    /* poštujemo postojeću pozadinu */
}

.container {
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-around;
}

.footer-brand {
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-text {
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.brand-desc {
    margin: 10px 0 0;
    opacity: .85;
}

.em {
    color: var(--accent-color, #4da3ff);
    font-weight: 600;
}

/* Grupe */
.footer-group {
    padding: 0;
    margin-top: 25px;
}

.footer-title {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .75;
    margin: 0 0 10px;
}

.footer-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-list a,
.contact-list a {
    color: var(--primary-color, #eaeaea);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color .15s ease, border-color .15s ease, opacity .15s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
    color: var(--accent-color, #4da3ff);
    border-bottom-color: color-mix(in oklab, var(--accent-color, #4da3ff) 40%, transparent);
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.newsletter input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--primary-color, #eaeaea);
    outline: none;
}

.newsletter input::placeholder {
    opacity: .6;
}

.newsletter input:focus {
    border-color: color-mix(in oklab, var(--accent-color, #4da3ff) 55%, transparent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-color, #4da3ff) 18%, transparent);
}

.btn-primary {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid color-mix(in oklab, var(--accent-color, #4da3ff) 25%, transparent);
    background: transparent;
    color: var(--accent-color, #4da3ff);
    font-weight: 600;
    cursor: pointer;
    transition: transform .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: color-mix(in oklab, var(--accent-color, #4da3ff) 12%, transparent);
    border-color: color-mix(in oklab, var(--accent-color, #4da3ff) 45%, transparent);
}

/* Donja traka */
.footer-bottom {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 28px;
    padding-top: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    opacity: .75;
}

.bottom-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bottom-links a {
    color: var(--primary-color, #eaeaea);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px dashed transparent;
    opacity: .8;
}

.bottom-links a:hover,
.bottom-links a:focus-visible {
    color: var(--accent-color, #4da3ff);
    border-bottom-color: color-mix(in oklab, var(--accent-color, #4da3ff) 40%, transparent);
    opacity: 1;
}

.to-top {
    font-weight: 600;
}

/* Responsive grid */

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* @media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
} */

.founders {
    padding: 80px 16px;
}

.founders__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    /* mobile first */
    gap: 40px;
    align-items: center;
}

/* Slika */
.founders__image-wrap {
    flex: 1;
    width: 100%;
}

.founders__image {
    width: 100%;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    max-height: 520px;
}

/* Tekst */
.founders__content {
    flex: 1;
    max-width: 560px;
}

.founders__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    margin-bottom: 8px;
    opacity: 0.7;
}

.founders__title {
    font-size: 32px;
    margin-bottom: 16px;
}

.founders__lead {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.founders__grid {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.founders__item h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.founders__item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Dugme – stil prilagodi postojećem dizajnu */
.founders__btn {
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

#moto-section {
    position: relative;
    margin: 25px 15px;
    text-align: center;
    overflow: hidden;
}


.moto-inner {
    position: relative;
    z-index: 2;
}

/* Glavni tekst – premium elegancija */
.moto-title {
    font-family: MotoFont;
    font-size: 64px;
    color: #ffffff;
    letter-spacing: 0px;
    font-weight: 300;
    /* ili Montserrat Light ako želiš */
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.25);
    opacity: 0.95;
}

.moto-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 28px;
    color: #ffffff;
    opacity: 0.35;
    transition: 0.3s ease;
}

.moto-instagram:hover {
    opacity: 1;
    transform: scale(1.5);
    color: var(--accent-color);
}

#about-videos-section {
    padding: 30px 0;
}

.about-videos-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-video-grid {
    width: 40%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.about-video-item {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    /* 9:16 Shorts format */
    overflow: hidden;
    border-radius: 14px;
}

.about-video-item iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .moto-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
}

/* DESKTOP LAYOUT */

@media (max-width: 980px) {
    .pricing__grid {
        grid-template-columns: 1fr;
    }

    .founders__inner {
        display: block;
        /* slika levo, tekst desno */
        align-items: center;
    }

    .founders__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .founders__title {
        font-size: 38px;
    }

    .founders__image-wrap {
        flex: 1;
        width: 100%;
        margin-bottom: 50px;
    }

    .about-video-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        width:60%;
    }
}

@media (max-width: 720px) {
    #navigation-wrapper {
        display: flex;
    }

    #main {
        height: 600px;
    }

    #logo img {
        width: 50%;
    }

    #hero-section h1 {
        font-size: 48px;
        line-height: 45px;
    }

    #hero-section {
        margin-top: 50px;
    }

    .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        align-items: start;
    }

    .container {
        display: block;
    }

    #nasi-zadovoljni-klijenti {
        margin-bottom: 100px;
    }

    #o-nama-section {
        margin-bottom: 50px;
    }

    #o-nama-tekst {
        width: 100%;
    }

    #zasto-mi-card-wrapper {
        display: block;
    }

    #o-nama-slika {
        width: 100%;
        margin-top: 50px;
    }

    #o-nama-slika img {
        width: 100%;
        margin-left: 0px;
    }

    .zasto-mi-card {
        width: 90%;
        margin-top: 25px;
    }

    .usluge-card {
        width: 90%;
        margin: 15px auto;
    }

    #proces-basic .wrap {
        padding: 10px 15px;
    }

    .stats-section {
        padding: 10px 15px;
    }

    .stats-wrap {
        display: block;
    }

    .stat {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .zasto-mi-tekst h3 {
        font-size: 18px;
    }
}

@media (width > 600px) {
    .carousel {
        --carousel-duration: 24s;
    }
}

.faq-section {
    background:
        radial-gradient(600px 600px at 50% -10%, rgba(77, 163, 255, .10), transparent 60%),
        var(--bg);
    color: var(--text);
    padding: clamp(40px, 6vw, 96px) 16px;
}

.faq-container {
    max-width: var(--maxw);
    margin: 0 auto;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: clamp(24px, 3.5vw, 40px);
}

.faq-header .eyebrow {
    letter-spacing: .08em;
    /* text-transform: uppercase; */
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.faq-header h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    line-height: 1.15;
    margin: 0 0 8px 0;
}

.faq-header .sub {
    color: var(--muted);
    max-width: 56ch;
    margin: 0 auto;
}

/* Card (jedna kolona, centrirano) */
.faq-card {
    background: linear-gradient(180deg, color-mix(in oklab, var(--card) 96%, transparent), var(--card));
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(8px, 1.8vw, 16px);
}

/* QA items */
.faq-card details {
    border: var(--border);
    border-radius: 12px;
    background: #0e141b;
    margin: 10px 0;
    overflow: clip;
}

.faq-card summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.faq-card summary::-webkit-details-marker {
    display: none;
}

/* Plus/minus */
.faq-card summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: var(--border);
    color: var(--text);
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
    font-weight: 700;
}

.faq-card details[open] summary::after {
    content: "–";
    background: color-mix(in oklab, var(--primary) 12%, transparent);
    border-color: color-mix(in oklab, var(--primary) 35%, transparent);
    transform: translateY(-1px);
}

.faq-card .q {
    line-height: 1.35;
}

.faq-card .a {
    color: var(--muted);
    padding: 0 18px 16px 18px;
    line-height: 1.65;
    border-top: var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 30%);
}

/* Fokus & a11y */
.faq-card summary:focus-visible {
    outline: 2px solid color-mix(in oklab, var(--primary) 70%, white 0%);
    outline-offset: 2px;
    border-radius: 10px;
}

/* Animacija (poštuje prefers-reduced-motion) */
.faq-card details[open] .a {
    animation: fadeSlide .22s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}