    :root {
        --bg: #000;
        --fg: #ececec;
        --muted: rgba(255, 255, 255, .72);
        --dim: rgba(255, 255, 255, .48);
        --accent: #00ff99;
        --border: rgba(255, 255, 255, .13);
        --panel: rgba(255, 255, 255, .03);
        --panel2: rgba(255, 255, 255, .02);
        --danger: rgba(255, 80, 80, .95);
        --ok: rgba(0, 255, 153, .95);
    }

    * {
        box-sizing: border-box
    }

    html {
        scroll-behavior: smooth
    }

    body {
        margin: 0;
        background: var(--bg);
        color: var(--fg);
        font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
        line-height: 1.45;
    }

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

    .wrap {
        max-width: 1000px;
        margin: 0 auto;
        padding: 30px 18px 64px;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin: -6px 0 18px;
        padding: 12px 0;
        backdrop-filter: blur(8px);
        background: linear-gradient(to bottom, rgba(0, 0, 0, .78), rgba(0, 0, 0, .25));
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }


    .brand img {
        width: clamp(64px, 6vw, 94px);
        height: auto;
        filter: drop-shadow(0 0 14px rgba(255, 255, 255, .18));
    }

    .brand .title {
        font-size: 15px;
        letter-spacing: 1px;
        opacity: .95;
        margin-left: 9px;
        white-space: break-spaces;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: var(--muted);
        flex-wrap: wrap;
        justify-content: flex-end;
    }


    .hero {
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 28px 22px;
        background: var(--panel);
    }

    .hero h1 {
        margin: 0 0 10px;
        font-size: 30px;
        letter-spacing: 1px;
    }

    .tagline {
        color: var(--muted);
        margin: 0 0 14px;
        max-width: 72ch;
        font-size: 14px;
    }

    .hero-strong {
        margin: 0 0 18px;
        color: var(--fg);
        opacity: .92;
        font-size: 14px;
    }

    .terminal-line {
        color: var(--accent);
        font-size: 13px;
        opacity: .9;
        margin: 12px 0 0;
        animation: flicker 1.6s infinite alternate;
    }

    @keyframes flicker {
        0% {
            opacity: .35
        }

        50% {
            opacity: 1
        }

        100% {
            opacity: .45
        }
    }

    .cta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 14px;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px 14px;
        border-radius: 12px;
        border: 1px solid var(--border);
        font-size: 13px;
        letter-spacing: .5px;
        cursor: pointer;
        background: rgba(255, 255, 255, .04);
        transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
    }

    .btn:hover {
        border-color: rgba(255, 255, 255, .24);
        background: rgba(255, 255, 255, .055);
        transform: translateY(-1px);
    }

    .btn.primary {
        background: rgba(0, 255, 153, .12);
        border-color: rgba(0, 255, 153, .35);
        box-shadow: 0 0 18px rgba(0, 255, 153, .12);
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 16px;
    }

    .btn.primary:hover {
        border-color: rgba(0, 255, 153, .58);
        background: rgba(0, 255, 153, .18)
    }

    .badge {
        font-size: 12px;
        color: var(--dim);
        margin-top: 14px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 14px;
        margin-top: 16px;
    }

    .card {
        grid-column: span 12;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 18px 16px;
        background: var(--panel2);
    }

    @media(min-width:760px) {
        .card.third {
            grid-column: span 4;
        }

        .card.half {
            grid-column: span 6;
        }
    }

    .card h2 {
        margin: 0 0 8px;
        font-size: 16px;
        letter-spacing: .6px;
    }

    .card.third h2 {
        color: rgba(0, 255, 153, .85);
    }

    .card p {
        margin: 0;
        color: var(--muted);
        font-size: 13px;
    }

    .list {
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
        color: var(--muted);
        font-size: 13px;
    }

    .list li {
        padding: 8px 0;
        border-top: 1px dashed rgba(255, 255, 255, .10);
    }

    .list li:first-child {
        border-top: 0
    }

    .kbd {
        display: inline-block;
        padding: 2px 7px;
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 12px;
        color: var(--fg);
        background: rgba(255, 255, 255, .03);
    }

    .trust {
        margin-top: 12px;
        color: rgba(255, 255, 255, .55);
        font-size: 12px;
    }

    .trust b {
        color: rgba(255, 255, 255, .78);
    }

    .pricing .price {
        margin-top: 10px;
        font-size: 22px;
        letter-spacing: 1px;
    }

    .pricing .small {
        font-size: 12px;
        color: var(--dim);
        margin-top: 4px;
    }

    .pricing .cases {
        margin-top: 10px;
        font-size: 12px;
        color: var(--dim);
    }

    .pricing .cases b {
        color: rgba(255, 255, 255, .75);
        font-weight: 700;
    }

    .pricing .popular {
        margin-top: 6px;
    }

    .separator {
        margin: 22px 0 0;
        border: 0;
        border-top: 1px solid var(--border);
    }

    .note {
        margin-top: 10px;
        color: var(--dim);
        font-size: 12px;
    }

    /* FORM */
    .form {
        margin-top: 12px;
        display: grid;
        gap: 10px;
    }

    .field {
        position: relative;
    }

    .field label {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, .70);
        margin-bottom: 6px;
    }

    .input,
    .select,
    .textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(0, 0, 0, .35);
        color: var(--fg);
        padding: 10px 11px;
        border-radius: 12px;
        font-family: inherit;
        font-size: 13px;
        outline: none;
    }

    .textarea {
        min-height: 110px;
        resize: vertical;
    }
    /* better select styling (OS dropdown still partly native) */
    .select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 40px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02)), rgba(0, 0, 0, .35);
    }	
    .input:focus,
    .select:focus,
    .textarea:focus {
        border-color: rgba(0, 255, 153, .45);
        box-shadow: 0 0 0 3px rgba(0, 255, 153, .08);
    }
	


    .form-row {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    @media(min-width:760px) {
        .form-row {
            grid-template-columns: 1fr 1fr;
        }
    }

    .hidden-hp {
        position: absolute !important;
        left: -10000px !important;
        top: auto !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
    }

    .alert {
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .03);
        padding: 10px 12px;
        border-radius: 14px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .alert.ok {
        border-color: rgba(0, 255, 153, .35);
    }

    .alert.ok b {
        color: var(--ok);
    }

    .alert.err {
        border-color: rgba(255, 80, 80, .35);
    }

    .alert.err b {
        color: var(--danger);
    }

    .field:has(.select)::after {
        content: "▾";
        position: absolute;
        right: 14px;
        top: 36px;
        color: rgba(255, 255, 255, .55);
        pointer-events: none;
        font-size: 14px;
    }

    select option {
        background: #0b0b0b;
        color: #eaeaea;
    }

    /* FAQ */
    .faq {
        margin-top: 12px;
        display: grid;
        gap: 10px;
    }

    .faq-item {
        border: 1px solid rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .02);
        border-radius: 14px;
        padding: 10px 12px;
    }

    .faq-item summary {
        cursor: pointer;
        list-style: none;
        font-size: 13px;
        color: rgba(255, 255, 255, .88);
        letter-spacing: .2px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: "▾";
        color: rgba(255, 255, 255, .55);
        font-size: 14px;
        transition: transform .15s ease;
    }

    .faq-item[open] summary::after {
        transform: rotate(180deg);
    }

    .faq-body {
        margin-top: 10px;
        color: rgba(255, 255, 255, .72);
        font-size: 13px;
    }

    .faq-body p {
        margin: 0;
    }

    .footer {
        margin-top: 22px;
        color: var(--dim);
        font-size: 12px;
        text-align: center;
    }

    /* Copyright */
    .footer-copyright {
        margin-top: 18px;
        margin-bottom: 12px;
        opacity: 0.80;
    }

    /* Legal links */
    .footer-links {
        margin-top: 10px;
        opacity: 0.75;
    }

    .footer-links__sep {
        display: inline-block;
        margin: 0 8px;
        opacity: 0.60;
		position: relative;
		top: -1px;
    }

    .footer-links a {
        opacity: 0.90;
        text-decoration: none;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
        opacity: 1;
        text-decoration: underline;
        outline: none;
    }

    /* Payment methods */
    .footer-payments {
        margin-top: 16px;
        opacity: 0.70;
        line-height: 1.4;
    }

    .footer-payments__title {
        font-weight: 600;
        margin-right: 6px;
    }

    .footer-payments__note {
        display: block;
        margin-top: 4px;
        font-size: 0.85em;
        opacity: 0.80;
    }


    .how-it-works__intro {
        margin-bottom: 24px;
        opacity: 0.9;
    }

    .how-it-works__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 24px;
    }

    .how-it-works__step {
        position: relative;
    }
	
    .how-it-works__number {
        margin-top: 24px;
        display: block;
        font-size: 0.85rem;
        margin-bottom: 4px;
        opacity: 0.6;
    }

    .how-it-works__step h3 {
        margin-bottom: 6px;
    }

    .how-it-works__note {
        font-size: 0.9rem;
        opacity: 0.8;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 16px;
        margin-top: 32px;
    }

    .how-it-works__step:nth-child(2) h3 {
        opacity: 1;
    }

    /* Header layout */
    .header__inner {
        position: relative;
        /* anchor za absolute elemente ako zatreba */
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    /* Mobile toggle button hidden on desktop */
    .nav-toggle {
        display: none;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        padding: 10px;
        cursor: pointer;
    }

    .nav-toggle span {
        display: block;
        height: 2px;
        margin: 6px 0;
        background: rgba(255, 255, 255, 0.85);
    }

    /* Link “pill” + hover (isto ponašanje kao nav linkovi) */
    .nav-lang a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 8px;
        border-radius: 10px;
        border: 1px solid transparent;
        text-decoration: none;
        opacity: 0.9;
    }

    /* Language area inside nav */
	    .nav a {
        opacity: .92;
        padding: 6px 8px;
        border-radius: 10px;
        border: 1px solid transparent;
    }
    .nav-lang a:hover {
        border-color: rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .02);
        opacity: 1;
    }
	
    .nav a:hover {
        color: var(--fg);
        border-color: rgba(255, 255, 255, .14);
        background: rgba(255, 255, 255, .02);
    }
	
    .nav-lang {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        margin-left: 10px;
    }


    /* ===== Mobile ===== */
    @media (max-width: 860px) {

        /* show hamburger */
        .nav-toggle {
            display: inline-block;
        }

        /* turn nav into a dropdown/drawer */
        .nav {
            position: absolute;
            top: 64px;
            /* po potrebi prilagodi visini headera */
            right: 18px;
            left: 18px;
            display: none;
            /* hidden until opened */
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            border-radius: 14px;
            background: rgba(0, 0, 0, 0.92);
            border: 1px solid rgba(255, 255, 255, 0.10);
            z-index: 50;
        }

        /* show nav when header has class 'nav-open' */
        .header.nav-open .nav {
            display: flex;
        }

        /* language row inside menu: keep it neat */
        .nav-lang {
            margin-left: 0;
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            width: 100%;
        }
    }

    @media (max-width: 520px) {
        .hero h1 {
            font-size: 2.2rem;
            /* prilagodi po tvom fontu */
            line-height: 1.15;
        }
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 18px;
        min-width: 0;
        line-height: 1.15;
    }

    @media (max-width: 520px) {
        .brand {
            gap: 16px;
        }
    }

    /* Force emoji font for flags (Chrome/Edge fix on Windows) */
    .flag {
        font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
        font-size: 16px;
        line-height: 1;
    }


    /* OPTIONAL: if you want the fallback a bit smaller on mobile */
    @media (max-width: 860px) {
        .lang-fallback {
            font-size: 0.8rem;
        }
    }

    /* =========================
   Language flags (final)
   ========================= */

    .flag-img {
        width: 20px;
        height: 13px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 2px;
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .45);
        opacity: .95;
    }

    /* fallback tekst (EN/SR/HR) */
    .nav-lang .lang-fallback {
		display: inline;
		margin-left: 6px;
		font-size: 0.82rem;
		opacity: .9;
	}


    /* malo veće na desktopu */
    @media (min-width: 861px) {
        .flag-img {
            width: 22px;
            height: 15px;
        }
    }

    /* Form UX: loading state */
    .form-status {
        margin-top: 10px;
        font-size: 12px;
        color: var(--dim);
        min-height: 16px;
    }

    .btn[disabled] {
        opacity: .6;
        cursor: not-allowed;
        transform: none !important;
    }

    .btn-spinner {
        display: none;
        width: 14px;
        height: 14px;
        border: 2px solid rgba(255, 255, 255, .25);
        border-top-color: rgba(0, 255, 153, .85);
        border-radius: 50%;
        animation: spin .7s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .btn.is-loading .btn-spinner {
        display: inline-block;
    }

    .btn.is-loading .btn-text {
        opacity: .9;
    }
	.px-consent{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 12px;
  background: rgba(0,0,0,.92);
  border-top: 1px solid rgba(255,255,255,.12);
}

.px-consent__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.px-consent__text{
  font-size: 14px;
  line-height: 1.35;
  opacity: .92;
}

.px-consent__text a{
  text-decoration: underline;
}

.px-consent__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* language switching */
.px-consent .px-msg-en, .px-consent .px-msg-sr, .px-consent .px-msg-hr,
.px-consent .px-btn-en, .px-consent .px-btn-sr, .px-consent .px-btn-hr{
  display: none;
}

.px-consent[data-lang="en"] .px-msg-en,
.px-consent[data-lang="en"] .px-btn-en{
  display: inline;
}

.px-consent[data-lang="sr"] .px-msg-sr,
.px-consent[data-lang="sr"] .px-btn-sr{
  display: inline;
}

.px-consent[data-lang="hr"] .px-msg-hr,
.px-consent[data-lang="hr"] .px-btn-hr{
  display: inline;
}

@media (max-width: 720px){
  .px-consent__inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
