/* BASE HTML */

body {
    background-color: #ffffff;
}

.logo {
    height: 53px;
    width: auto;
}

.logo-mobile {
    display: none;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .hero .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


.nav-buttons {
    gap: 24px;
}

/* Log In */
.login-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.login-link-reverse {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}


.login-link:hover {
    color: #ED1C24;
}

/* Sign Up button */
.signup-btn {
    background: #ED1C24;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.signup-btn:hover {
    transform: scale(1.05);
    background: #ED1C24;
!important;
    color: #fff;
!important;
}

.signup-btn-reverse {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #ED1C24;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.signup-btn-reverse:hover {
    transform: scale(1.05);
    background: #fff !important;
    color: #ED1C24;
!important;
}

/* Footer Base */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    /*padding: 2rem 1rem;*/
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: rgba(0, 0, 0, 0.55);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

/* Left: logo + nav */
.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem; /* razmak između loga i linkova */
}

/* Logo */
.footer-logo img {
    max-height: 40px;
    width: auto;
}

/* Navigation links */
.footer-nav {
    display: flex;
    gap: 2rem; /* razmak između linkova */
}

.footer-nav a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.55);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 1.5rem; /* razmak između ikona */
}

.footer-socials a {
    display: inline-block;
}

.social-icon {
    width: 24px; /* prema Figma dizajnu */
    height: 24px;
    object-fit: contain;
    transition: opacity 0.2s;
}

.footer-socials a:hover .social-icon {
    opacity: 0.8; /* lagani hover efekt */
}

@media (max-width: 768px) {

    .footer {
        padding: 64px 16px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start; /* ⬅️ ključno: lijevo, ne centar */
        gap: 40px;
    }

    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-nav {
        flex-direction: row; /* ⬅️ nije column */
        flex-wrap: wrap; /* ⬅️ omogućava 2 reda */
        gap: 16px 0px; /* row-gap / column-gap */
        width: 100%;
    }

    .footer-nav a {
        width: calc(50% - 16px);
    }

    .footer-socials {
        justify-content: flex-start; /* ⬅️ lijevo */
        gap: 24px;
    }
}


/*@media (max-width: 768px) {*/

/*    .footer-container {*/
/*        flex-direction: column;*/
/*        align-items: center; !* 🔥 ključ *!*/
/*        text-align: center; !* 🔥 ključ *!*/
/*        gap: 24px;*/
/*    }*/

/*    .footer-left {*/
/*        flex-direction: column;*/
/*        align-items: center; !* centriraj logo + linkove *!*/
/*        gap: 20px;*/
/*    }*/

/*    .footer-nav {*/
/*        flex-direction: column;*/
/*        gap: 14px;*/
/*        align-items: center; !* centriraj linkove *!*/
/*    }*/

/*    .footer-socials {*/
/*        justify-content: center; !* centriraj ikone *!*/
/*        gap: 16px;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .px-5 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .py-5 {
        padding-top: 16px !important;
        padding-bottom: 32px !important;
    }
}


/*        LANDING PAGE     */


.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    position: relative;
}

.hero .row {
    width: 100%;
}

.feature-card, .feature-card-candidate {
    display: flex;
    flex-direction: column;
    gap: 32px; /* Figma */
    max-width: 388px;
    width: 100%;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .feature-card, .feature-card-candidate {
        gap: 0px;
    }
}

.feature-card:hover {
    transform: scale(1.05);
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
}


/* IMAGE */
.feature-card img {
    width: 100%;
    height: 516px; /* Figma */
    object-fit: contain;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .feature-card img {
        width: 100%;
        object-fit: contain;
        border-radius: 16px;
        height: auto;
    }


}

/* TEXT */
.card-text, .card-text-candidate {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* TITLE */
.card-text h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 120%;
    color: #ED1C24;
    margin: 0;
}

.card-text-candidate h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
}

/* DESCRIPTION */
.card-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* DESCRIPTION */
.card-text-candidate p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.divider {
    position: absolute;
    width: 5px;
    top: 3rem;
    bottom: 3rem;
    background: #ED1C24;
    border-radius: 40px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .divider {
        width: 80%; /* sada je linija široka */
        height: 5px; /* debljina linije */
        top: 50%; /* između kartica */
        bottom: auto; /* OBAVEZNO maknuti */
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/*        LANDING PAGE     */


.feature {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 4vw 5%;
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}

.feature-content {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* tekst i slika iste visine */
    gap: 10%;
    max-width: 1280px;
    width: 100%;
}

.feature-text,
.feature-image {
    flex: 1;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.feature-text h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000;
    margin: 0;
}

.feature-text p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* BUTTON */
.feature-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    background: #ED1C24;
    color: white;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    width: fit-content;
    transition: 0.2s;
}

.feature-btn:hover {
    background: #c4161d;
}

.feature-image {
    border-radius: 16px;
    aspect-ratio: 544 / 432;
    flex-shrink: 0;
}

.future-image-image {
    background: url('/static/images/img_6.png') no-repeat center/cover;
}

.feature-image-image-two {
    background: url('/static/images/img_8.png') no-repeat center/cover;
}

.feature-image-image-three {
    background: url('/static/images/img_9.png') no-repeat center/cover;
}

.feature-image-image-four {
    background: url('/static/images/img_10.png') no-repeat center/cover;
}

/* RESPONSIVNOST */
@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .feature-text,
    .feature-image {
        width: 90%;
        flex: none;
    }

    .feature-text {
        text-align: center;
        align-items: center;
    }
}


.text-row {
    background: #ED1C24;
    display: flex;
    justify-content: center;
    padding: 8vw 5%;
}

.text-row-content {
    display: flex;
    gap: 6%;
    max-width: 1280px;
    width: 100%;
}

.text-block {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}

/* NASLOV */
.text-block h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

/* PARAGRAF */
.text-block p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: #FFFFFF;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .text-row-content {
        flex-direction: column;
        gap: 2rem;
    }

    .text-block {
        width: 100%;
    }
}


.card h5 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.card p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    letter-spacing: -0.005em;
}


.header {
    display: flex;
    justify-content: center;
    padding: 40px 40px 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 120px;

    width: 100%;
    max-width: 1280px;
}

.header-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 8vw, 96px);
    line-height: 0.85;
    text-align: center;
    letter-spacing: -0.05em;
    margin: 0;
    padding-bottom: 4rem;
}

.header-hero {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 360px;

    background: #ED1C24;
    border-radius: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ipad ostaje isto */
.ipad {
    position: absolute;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 1.794;

    background: #000;
    border-radius: 24px;

    border: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;

    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);

    top: -120px;
    z-index: 2;


    /* Start pozicija za animaciju */
    transform: translateY(120px); /* pomak prema dolje */
    animation: slideUp 1.2s ease-out forwards; /* sporija animacija */
    animation-delay: 0.2s;
}

/* ipad ostaje isto */
.ipad-candidate {
    position: absolute;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 1.794;

    background: #000;
    border-radius: 24px;

    border: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;

    box-shadow: 0px -4px 20px rgba(0, 0, 0, 0.1);

    top: -140px;
    z-index: 2;


    /* Start pozicija za animaciju */
    transform: translateY(120px); /* pomak prema dolje */
    animation: slideUp 1.2s ease-out forwards; /* sporija animacija */
    animation-delay: 0.2s;
}


.ipad-screen {
    position: absolute;
    top: 20px;
    left: 18px;
    right: 18px;
    bottom: 18px;

    border-radius: 16px;
    overflow: hidden;

}

.ipad-screen img {
    width: 100%;
    height: 100%;
    /*object-fit: contain; !* ključ *!*/

    /*transform: translateY(20px); !* start lagani pomak *!*/
    animation: slideUpImage 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

/* Keyframes za tablet */
@keyframes slideUp {
    0% {
        transform: translateY(120px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .header {
        padding: 20px 20px 0;
    }

    .header-hero {
        height: 100px;
        border-radius: 18px;
    }

    .header-container {
        gap: 30px;
    }

    .ipad {
        top: -40px;
        border-radius: 18px;
    }

    .ipad-candidate {
        top: -50px;
        border-radius: 18px;
    }

    .ipad-screen {
        top: 4px;
        left: 4px;
        right: 4px;
        bottom: 4px;
        border-radius: 14px;
    }
}


.cta {
    display: flex;
    justify-content: center;

    padding: 120px 20px 80px;
    border-top: 0.5px solid #E9E9E9;

    position: relative; /* da z-index radi */
    z-index: 10; /* mora biti veće od tableta */
    background: #fff;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    width: 100%;
    max-width: 1280px;
    text-align: center;
}

/* SUBTITLE */
.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #6F6F6F;
    margin: 0;
}

/* TITLE */
.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 6vw, 60px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #ED1C24;
    margin: 0;
}

/* TEXT */
.cta-text {
    font-family: 'Inter', sans-serif;
    /*font-weight: 500;*/
    font-size: 20px;
    color: #6F6F6F;
    margin: 0;
}

/* BUTTON */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 14px 28px;
    background: #ED1C24;
    color: #fff;

    border-radius: 999px;
    text-decoration: none;

    font-size: 18px;
    font-weight: 500;

    transition: all 0.3s ease;
    width: 80%;
    align-items: center; /* vertikalno centriranje */
    justify-content: center;
}

/* HOVER */
.cta-button:hover {
    background: #c4161c;
    transform: translateY(-2px);
}

/* ARROW */
.cta-arrow {
    font-size: 18px;
}


.features-section {
    /*padding: 40px 20px 0;*/
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}


.features-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 36px;

    max-width: 1280px;
    width: 100%;
}

@media (max-width: 768px) {

    .features-section {
        padding: 40px 20px;
    }

    .features-container {
        flex-direction: column;
    }

    .cta {
        padding: 40px 20px 40px;
    }
}

.feature-card-new {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #FDECED;
    border-radius: 16px;

    width: 100%;
    /*max-width: 360px; !* 👈 KLJUČNO *!*/

    padding: 34px 34px 0 34px;
    gap: 24px;

    box-sizing: border-box;
}

.feature-text-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-text-new h4 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

.feature-text-new p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    letter-spacing: -0.005em;
}

.feature-card-new img {
    width: 90%;

    margin: 0 auto; /* 👈 centriranje */

    border-radius: 24px;

}


.feature-card-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 800px;
    max-width: 100%;
    min-width: 640px;
    height: 228px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02), 0 6px 12px rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    box-sizing: border-box;
    padding: 0;
    gap: 0;
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    cursor: pointer;
    margin: 0 auto;
}


.feature-card-horizontal__image {
    width: 160px;
    height: 228px;
    background: url('/static/images/img_15.png') no-repeat center/cover;
    flex-shrink: 0;
    border-radius: 16px 0 0 16px; /* samo lijevi rubovi */
}

.feature-card-horizontal__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    flex: 1;
    height: 228px;
    box-sizing: border-box;
}

.feature-card-horizontal__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 145%;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
}

.feature-card-horizontal__description {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

.feature-card-horizontal__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #ED1C24;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .feature-card-horizontal {
        flex-direction: column;
        height: auto;
        min-width: 0;
        width: 100%;
    }

    .feature-card-horizontal__image {
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }

    .feature-card-horizontal__body {
        align-items: center;
        text-align: center;
        height: auto;
    }

    .feature-card-horizontal__title,
    .feature-card-horizontal__description {
        text-align: center;
    }

}


.marquee-section {
    overflow: hidden;
    width: 100%;
    padding: 48px 0;
    background: #fff;
}

/* wrapper */
.marquee {
    display: flex;
    width: max-content;
}

/* svaki blok */
.marquee-group {
    display: flex;
    gap: 16px;
    animation: scroll 9s linear infinite;
}

/* tekst */
.marquee-group span {
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: -0.02em;
    color: #000;
}

/* crvene riječi */
.marquee-group .highlight {
    color: #ED1C24 !important;
}

/* KLJUČNO */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* responsive */
@media (max-width: 768px) {
    .marquee-group span {
        font-size: 24px;
    }
}


/* RED SECTION */
.feature-cards-red {
    display: flex;
    justify-content: center;
    padding: 120px 40px;
    background: #ED1C24;
}

/* container kao i svugdje */
.feature-cards-red-container {
    display: flex;
    gap: 32px;
    max-width: 1280px;
    width: 100%;
}

@media (max-width: 768px) {
    .feature-cards-red {
        padding: 40px 20px;
    }
}

/* CARD */
.feature-card-white {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;

    flex: 1;

    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.02),
    0px 6px 12px rgba(0, 0, 0, 0.03);

    display: flex;
    flex-direction: column;
}

/* IMAGE */
.feature-card-white__image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

/* zamijeni slike */
.image-1 {
    background-image: url('/static/images/img_16.png');
}

.image-2 {
    background-image: url('/static/images/img_17.png');
}

.image-3 {
    background-image: url('/static/images/img_18.png');
}

/* BODY */
.feature-card-white__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* TITLE */
.feature-card-white__body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #ED1C24;
    margin: 0;
}

/* TEXT */
.feature-card-white__body p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* LINK */
.feature-card-white__body a {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000;
    text-decoration: none;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .feature-cards-red-container {
        flex-direction: column;
    }
}


/* SECTION */
.logo-cloud {
    display: flex;
    justify-content: center;
    padding: 50px 40px;
}

/* CONTAINER */
.logo-cloud-container {
    max-width: 1280px;
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* TITLE */
.logo-cloud-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #6F6F6F;
    margin: 0;
}

/* LOGOS WRAPPER */
.logo-cloud-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

/* LOGO ITEM */
.logo-item {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
.logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}


.bg-red {
    background-color: #ED1C24;
}


/* wrapper */
.buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 798px;
}

@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        gap: 12px;
    }
}

/* input (secondary button iz Figme) */
.input-field {
    flex: 1; /* zauzme sav prostor */
    height: 50px;
    padding: 12px 16px;

    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;

    color: #000;
    outline: none;
}

/* placeholder */
.input-field::placeholder {
    color: #D9D9D9;
}

/* primary button */
.primary-btn {
    height: 50px;
    padding: 12px 16px;

    background: #ED1C24;
    border-radius: 12px;
    border: none;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;

    color: #fff;
    cursor: pointer;

    transition: transform 0.2s ease;
}

/* hover efekt (tvoj zahtjev) */
.primary-btn:hover {
    transform: scale(1.05);
}

/* click efekt */
.primary-btn:active {
    transform: scale(0.97);
}

.features-container-candidate {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;

    max-width: 1280px;
    width: 100%;
}

.features-section-candidate {
    /*padding: 40px 20px 0;*/
    padding: 20px 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .features-container-candidate {
        flex-direction: column;
    }

    .features-container-candidate {
        gap: 0px;
    }

    .features-section-candidate {
        padding: 20px 20px;
    }
}


/* SECTION */
.text-list-section {
    display: flex;
    justify-content: center;
    padding: 120px 40px;
}

/* CONTAINER */
.text-list-container {
    display: flex;
    gap: 48px;

    max-width: 1280px;
    width: 100%;
}

/* LEFT */
.text-list-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.text-list-left h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 120%;
    letter-spacing: -0.02em;
    margin: 0;
}

.text-list-left img {
    width: 100%;
    height: 432px;
    object-fit: cover;
    border-radius: 16px;
}

/* RIGHT */
.text-list-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.text-list-item {
    background: #ED1C24;
    border-radius: 16px;
    padding: 24px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* HEADER */
.text-list-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-list-header h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .text-list-container {
        flex-direction: column;
    }

    .text-list-section {
        padding: 60px 20px;
    }
}

/* ICON (placeholder) */
.icon {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
}

.icon {
    width: 20px;
    height: 20px;
    position: relative;
}

/* 🔴 KRUG */
.icon-circle {
    background: white;
    border-radius: 50%;
}

/* 🔶 KOSI KVADRAT (diamond) */
.icon-diamond {
    background: white;
    transform: rotate(45deg);
}

/* 🔺 TROKUT */
.icon-triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid white;
}

/* TEXT */
.text-list-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0;
}


.hero-3 {
    display: flex;
    justify-content: center;
    padding: 120px 64px;
    /*flex-direction: column;*/
}

.hero-3-content {
    width: 100%;
    /*max-width: 960px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 20px 16px;
}

.hero-3-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #ED1C24;
    margin: 0;
}

.hero-3-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* GRID */
.hero-3-grid {
    width: 100%;
    max-width: 576px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* FIELD */
.field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.field.full {
    grid-column: span 2;
}

.field label {
    font-size: 16px;
    font-weight: 400;
    color: #ED1C24;
    margin-bottom: 6px;
}

/* INPUT - Figma style */
.field input {
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.field input::placeholder {
    color: #D9D9D9;
}

/* BUTTON */
.hero-3-btn {
    margin-top: 24px;
    width: 100%;
    max-width: 576px;
    height: 50px;

    background: #ED1C24;
    border: none;
    border-radius: 12px;

    color: #fff;
    font-size: 18px;
    font-weight: 400;

    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-3-btn:hover {
    transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-3 {
        padding: 64px 16px;
    }

    .hero-3-title {
        font-size: 36px;
    }

    .hero-3-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }
}

.hero-3-success {
    min-height: calc(100vh - 216px);
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertikalno centriranje */
    align-items: center;
    padding: 120px 64px;
    gap: 48px;
}

.hero-3-success-content {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.hero-3-success-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #ED1C24;
    margin: 0;
}

.hero-3-success-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

.hero-3-success-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
}


.hero-3-success-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 576px;
    height: 50px;

    background: #ED1C24;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .hero-3-success-btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 16px;
        line-height: 1.2;
        text-align: center;
        white-space: normal; /* dozvoljava wrap */
    }

    .hero-3-success {

        padding: 60px 64px;
    }
}


.hero-login {
    display: flex;
    justify-content: center;
    padding: 120px 64px;
}

/* CARD */
.hero-login-card {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 26px;
    width: 100%;
    max-width: 740px;

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 16px rgba(22, 22, 22, 0.1);
    border-radius: 20px;
}

/* LEFT */
.hero-login-left form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* TEXT */
.hero-login-title {
    font-size: 32px;
    font-weight: 700;
    color: #ED1C24;
    margin: 0;
}

.hero-login-subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
}

/* INPUT */
.input-box input {
    width: 100%;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
}

.input-box input::placeholder {
    color: #D9D9D9;
}

/* PASSWORD spacing */
.input-box.password {
    position: relative;
}

/* LINKS */
.forgot {
    font-size: 11px;
    color: #ED1C24;
    text-decoration: none;
    align-self: flex-end;
}

/* BUTTON */
.login-btn {
    height: 40px;
    background: #ED1C24;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* SIGNUP */
.signup {
    font-size: 11px;
    text-align: center;
    color: rgba(0, 0, 0, 0.55);
}

.signup a {
    color: #ED1C24;
    text-decoration: none;
}

/* RIGHT IMAGE */
.hero-login-right {
    height: 523px;
    background: url("/static/images/img_29.png") center/cover no-repeat;
    border-radius: 20px;
}

.hero-login-left,
.hero-login-right {
    flex: 1;
}

@media (max-width: 768px) {
    .hero-login {
        padding: 60px 20px;
    }
}