@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #0f172a; /* tekst */
    background-color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.faq-item {
    margin-bottom: 20px;
}

/* TYPOGRAPHY */
h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0e2a47;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0e2a47;
    letter-spacing: -0.3px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #0f172a;
}

p {
    margin-bottom: 20px;
}

/* HERO */

#hero {
    background-color: #f5f7fa;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    padding-right: 20px;
}

.hero-info {
    border-top: 4px solid #ff7a00;
}

.hero-right {
    padding: 40px;
}



/* BUTTON */

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ff7a00;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* SECTIONS */

section {
    padding: 120px 0;
}

section {
    padding: 100px 0;
}
section:nth-of-type(even) {
    background-color: #f5f7fa;
}

/* LISTE */

ol, ul {
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
}

section:nth-of-type(even) {
    background-color: #f5f7fa;
}

/* AUTORITET */

#autoritet p {
    font-weight: 500;
    color: #0f172a;
}

/* FORM */

form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #1fb6b9; /* sekundarna */
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #0e2a47; /* primarna */
}
#zasto .card {
    text-align: center;
    font-weight: 600;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #0f172a;
    background-color: #f5f7fa;
}
/* MODAL */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 71, 0.85); /* primarna sa opacity */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 6px;
    position: relative;
}

.modal-box h2 {
    margin-bottom: 20px;
}

.modal-note {
    font-size: 14px;
    margin-bottom: 20px;
    color: #0f172a;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0e2a47;
}

.modal-close:hover {
    color: #ff7a00; /* CTA */
}

#faq h3 {
    font-size: 18px;
    margin-top: 20px;
    color: #0e2a47;
}

.faq-item p {
    margin-top: 8px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.primer-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #ff7a00;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    margin-bottom: 25px;
}

.hero-trust {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #0e2a47;
    opacity: 0.7;
}

#manifest p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 700px;
}

#manifest h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* MOBILE STICKY CTA */

.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .mobile-cta .btn-primary {
        width: 100%;
        text-align: center;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 60px 20px;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
