:root {
    --primary: #111827;
    --accent: #f97316;
    --bg: #f3f4f6;
    --text: #111827;
    --muted: #6b7280;
    --white: #ffffff;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

header {
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1.0rem;
}

.logo-mark {
    width: 50px;
    height: 32px;
    background-image: url("logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.under {
    text-decoration: underline;
}
.nav-links {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.nav-links a {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.nav-links a:hover {
    background: #f3f4f6;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* Hamburger toggle (CSS-only) */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f9fafb;
}

.nav-toggle-label span {
    display: block;
    width: 16px;
    height: 2px;
    background: #111827;
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: #111827;
}

.nav-toggle-label span::before {
    top: -5px;
}

.nav-toggle-label span::after {
    top: 5px;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

section {
    margin: 3rem 0;
}
/* Hero */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero p {
    color: var(--muted);
    margin: 0 0 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #374151;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary {
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-ghost {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: transparent;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-ghost:hover {
    background: #f9fafb;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    font-size: 0.8rem;
}

.hero-card-item {
    padding: 0.6rem 0.7rem;
    border-radius: 0.75rem;
    background: #f9fafb;
}

.hero-card-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.hero-card-value {
    font-weight: 600;
}

.hero-card-footer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--muted);
}

/* Sections */

.section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.section-lead {
    color: var(--muted);
    max-width: 600px;
    font-size: 0.95rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.formular {
    background: var(--white);
    border-radius: 1rem;
	line-height: 0.7;
    padding: 1.10rem;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
}

.formular h2 {
    margin-top: 2;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
	text-align: right;
}
.formular label {
    margin-bottom: 0.8rem;
}
.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.pill {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    margin-bottom: 0.4rem;
}

/* Cjenik */

.pricing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.price-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.price-name {
    font-weight: 600;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-amount span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.price-list li {
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Proces */

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.step {
    background: var(--white);
    border-radius: 0.9rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #111827;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* FAQ */

.faq {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    font-size: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e5e7eb;
}

.faq-q {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.faq-a {
    color: #5d636e;
}

/* Kontakt */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.field {
    margin-bottom: 0.9rem;
}

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.6rem;
    border: 1px solid #d1d5db;
    font: inherit;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #f97316;
    outline-offset: 1px;
    border-color: #f97316;
}

.contact-info {
    font-size: 1rem;
}

.contact-info p {
    margin: 0 0 0.4rem;
}

.contact-highlight {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: #fef3c7;
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 1rem 2rem;
    font-size: 0.8rem;
    color: var(--muted);
}

footer .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
}

/* Responsive */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .grid-3,
    .pricing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .nav {
        align-items: center;
    }

    .nav-links {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid #e5e7eb;
        flex-direction: column;
        padding: 0.5rem 1rem 0.75rem;
        gap: 0.25rem;
        display: none;
    }

    .nav-links a {
        padding: 0.4rem 0.6rem;
        border-radius: 0.5rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle-label {
        display: inline-flex;
    }

    /* checkbox hack: kad je checked, prikaži meni */
    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    main {
        padding-inline: 1rem;
    }

    .grid-3,
    .pricing,
    .steps,
    .faq {
        grid-template-columns: minmax(0, 1fr);
    }

    section {
        margin: 2.5rem 0;
    }
}
