/*
 * Stilovi javnog dijela sajta (zakazivanje.ba).
 * Prije su stajali inline u layoutu, 67 KB na svakoj stranici pri svakom
 * ucitavanju. Ovako browser skine jednom i kesira za sve stranice.
 */
/* ========================================
           CSS Variables
        ======================================== */
        :root {
            /* Bricolage Grotesque nosi naslove, Inter tekst. Oba imaju nasa slova. */
            /* Isti pristup koji koriste Apple, Shopify i GitHub: prvo font samog
               sistema (SF Pro na Macu i iPhoneu, Segoe UI Variable na Windowsu),
               pa Inter kao rezerva. Uredjaj koji vec ima svoj font ne preuzima
               nista, a naslovi izgledaju domace. */
            --font-system: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
                           'Segoe UI Variable Display', 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
            --font-display: var(--font-system);
            --font-body: var(--font-system);
            /* Paleta izvedena iz logotipa: #1B3FD1 je osnovna, #4D76FF svjetlija,
               #111827 je boja teksta u samom logotipu. */
            --primary: #1B3FD1;
            --primary-dark: #16349F;
            --primary-deeper: #101F73;
            --primary-bright: #4D76FF;
            --primary-light: #EEF2FF;
            --primary-50: #EEF2FF;
            --primary-100: #DDE4FF;
            --primary-200: #BFCDFF;
            --text-dark: #111827;
            --text-medium: #374151;
            --text-light: #6b7280;
            --text-muted: #9ca3af;
            --bg-white: #ffffff;
            --bg-light: #f9fafb;
            --bg-lighter: #f3f4f6;
            --border-light: #f3f4f6;
            --border-medium: #e5e7eb;
            --border-dark: #d1d5db;
            --green: #059669;
            --green-light: #ecfdf5;
            --radius-sm: 8px;
            --radius-md: 10px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 20px;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            /* Zaglavlje je fiksno, pa sve ispod njega krece od ove vrijednosti.
               Na sirem ekranu iznad navigacije stoji jos i tanka traka. */
            --header-h: 72px;
        }

        @media (min-width: 900px) {
            :root { --header-h: 108px; }
        }

        /* ========================================
           Reset & Base
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* Gasi plavi bljesak koji mobilni browseri crtaju na dodir */
            -webkit-tap-highlight-color: transparent;
        }

        /* Outline nestaje na klik i dodir, ali ostaje za tastaturu. Bez ovog
           drugog dijela se stranica ne moze koristiti bez misa. */
        a:focus:not(:focus-visible),
        button:focus:not(:focus-visible),
        [tabindex]:focus:not(:focus-visible) {
            outline: none;
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
            border-radius: 6px;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: calc(var(--header-h) + 8px);
        }

        body {
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--bg-white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

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

        ul, ol {
            list-style: none;
        }

        /* ========================================
           Container
        ======================================== */
        .container {
            width: 100%;
            max-width: 1420px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========================================
           Navbar
        ======================================== */
        /* Zaglavlje: gornja traka sa nalozima, ispod nje navigacija. */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .topbar {
            display: none;
            background: var(--primary-deeper);
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.8rem;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            height: 36px;
        }

        .topbar-note { color: rgba(255, 255, 255, 0.72); }

        .topbar-links {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .topbar-links a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: rgba(255, 255, 255, 0.82);
            transition: color 0.2s;
        }

        .topbar-links a:hover { color: #fff; }

        .topbar-links svg { width: 14px; height: 14px; }

        .topbar-sep {
            width: 1px;
            height: 14px;
            background: rgba(255, 255, 255, 0.25);
        }

        .topbar-social {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-left: -6px;
        }

        .topbar-social a { color: rgba(255, 255, 255, 0.7); }
        .topbar-social a:hover { color: #ffffff; }

        .topbar-strong { color: #fff !important; font-weight: 600; }

        @media (min-width: 900px) {
            .topbar { display: block; }
        }

        .navbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            height: 72px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .navbar-logo span {
            color: var(--text-dark);
        }

        .navbar-logo-img {
            height: 34px;
            width: auto;
            max-width: 200px;
            display: block;
        }

        @media (max-width: 480px) {
            .navbar-logo-img { height: 28px; }
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-right: auto;
            margin-left: 8px;
        }

        .navbar-links a {
            position: relative;
            font-size: 0.925rem;
            font-weight: 500;
            color: var(--text-medium);
            padding: 6px 0;
            transition: color 0.2s;
        }

        .navbar-links a:hover { color: var(--primary); }

        /* Podvlaka izlazi iz sredine, da se hover vidi bez pomjeranja teksta */
        .navbar-links a::after {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            bottom: 0;
            height: 2px;
            border-radius: 2px;
            background: var(--primary);
            transition: left 0.2s, right 0.2s;
        }

        .navbar-links a:hover::after { left: 0; right: 0; }

        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-ghost {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 16px;
            border: 1px solid var(--border-medium);
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-medium);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }

        .navbar-ghost:hover {
            border-color: var(--primary-200);
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .navbar-ghost svg { width: 15px; height: 15px; }

        /* Odjava je dugme jer je POST; mora izgledati kao veza pored nje */
        button.navbar-ghost {
            background: none;
            font-family: inherit;
            cursor: pointer;
        }

        .navbar-logout { display: inline-flex; margin: 0; }

        /* Tri radnje stanu na sirokom ekranu; na uzem ostaje samo lupa */
        @media (max-width: 1180px) {
            .navbar-ghost-label { display: none; }
            .navbar-ghost { padding: 9px 12px; }
        }

        .navbar-cta {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: var(--primary);
            color: white !important;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
        }

        .navbar-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px -8px rgba(27, 63, 209, 0.8);
        }

        /* Bez ovoga se elementi sa x-cloak vide dok se Alpine ne ucita */
        [x-cloak] { display: none !important; }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--text-dark);
        }

        /* Fioka s lijeve strane. Uvijek je u DOM-u i samo se izvlaci, pa se
           animira; display: none se ne moze animirati. */
        .mobile-menu {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            width: min(84vw, 320px);
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 84px 22px 28px;
            background: white;
            box-shadow: 0 0 40px rgba(2, 12, 40, 0.22);
            z-index: 1001;
            transform: translateX(-100%);
            visibility: hidden;
            transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
            overflow-y: auto;
            overscroll-behavior: contain;
        }

        .mobile-menu.open {
            transform: translateX(0);
            visibility: visible;
        }

        .mobile-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(2, 12, 40, 0.45);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.28s, visibility 0.28s;
        }

        .mobile-backdrop.open {
            opacity: 1;
            visibility: visible;
        }

        @media (min-width: 769px) {
            .mobile-menu,
            .mobile-backdrop {
                display: none;
            }
        }

        .mobile-close {
            position: absolute;
            top: 22px;
            right: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid var(--border-medium);
            border-radius: 10px;
            background: white;
            color: var(--text-medium);
            cursor: pointer;
        }

        .mobile-close:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .mobile-menu-label {
            display: block;
            margin: 18px 0 4px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .mobile-menu-label:first-of-type { margin-top: 0; }

        .mobile-menu a {
            display: block;
            padding: 12px 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-medium);
            border-bottom: 1px solid var(--border-light);
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu-social {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 6px;
        }

        .mobile-menu .mobile-menu-social a {
            display: inline-flex;
            padding: 8px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            color: var(--text-medium);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }

        .mobile-menu .mobile-menu-social a:hover {
            border-color: var(--primary-200);
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        /* Odjava u fioci je POST forma, a mora stajati u istom nizu kao veze */
        .mobile-menu-form { margin: 0; }

        .mobile-menu-form button {
            display: block;
            width: 100%;
            padding: 12px 0;
            border: 0;
            background: none;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-medium);
            text-align: left;
            cursor: pointer;
        }

        .mobile-menu .navbar-cta,
        .mobile-menu-cta {
            display: block;
            text-align: center;
            justify-content: center;
            margin-top: 20px;
            width: 100%;
            border-bottom: 0;
        }

        .mobile-menu .mobile-menu-cta--ghost {
            margin-bottom: -8px;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary) !important;
        }

        .mobile-menu .mobile-menu-cta--ghost:hover { background: var(--primary-light); }

        /* ========================================
           Buttons
        ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            border: 2px solid transparent;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .btn-outline-white {
            background: transparent;
            color: white;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
        }

        .btn-white {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-lg {
            padding: 16px 40px;
            font-size: 1.1rem;
        }

        .btn-sm {
            padding: 10px 24px;
            font-size: 0.875rem;
        }

        /* ========================================
           Section Base
        ======================================== */
        .section {
            padding: 100px 0;
        }

        .section-light {
            background: var(--bg-light);
        }

        .section-white {
            background: var(--bg-white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-50);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ========================================
           Hero
        ======================================== */
        /* ========================================
           Hero: fotografija sa plavim velom, sadrzaj centriran
        ======================================== */
        .hero {
            position: relative;
            isolation: isolate;
            /* Bez overflow: hidden. Sjekao je otvorene dropdowne kad spisak
               naraste. Jedino sto je virilo van okvira su svjetla, pa su ona
               dobila svoj okvir koji ih siject: .hero-fx. */
            padding-top: var(--header-h);
            /* Mreza ispod fotografije: drzi hero plavim dok se slika ucitava, i
               ostaje jedina pozadina ako slike nema ili se ne ucita. Vrijednost
               je pogodjena da bude blizu konacnog dojma, da skok bude manji. */
            background: #2340B8;
        }

        .hero-fx {
            position: absolute;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -3;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Plavi vel u boji logotipa (#1B3FD1), prelazi dijagonalno u dublju plavu.
           dijagonalno. Drugi sloj tamni dno da tekst ostane citljiv. */
        .hero-veil {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: linear-gradient(135deg,
                        rgba(45, 82, 218, 0.92) 0%,
                        rgba(27, 63, 209, 0.90) 42%,
                        rgba(16, 31, 115, 0.92) 100%);
        }

        .hero-veil::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(2, 12, 40, 0.06), rgba(2, 12, 40, 0.32));
        }

        /* Mreza preko vela, gasi se prema dnu */
        .hero-grid {
            position: absolute;
            inset: 0;
            z-index: -1;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
            background-size: 64px 64px;
            -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 92%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 45%, transparent 92%);
            pointer-events: none;
        }

        /* Ukrasni oblici: prstenovi, tacke i dva mekana svjetla */
        .hero-deco {
            position: absolute;
            inset: 0;
            z-index: -1;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            pointer-events: none;
        }

        .hero-orb--a {
            top: -140px;
            right: -80px;
            width: 420px;
            height: 420px;
            background: rgba(122, 152, 255, 0.34);
            animation: orbFloat 20s ease-in-out infinite alternate;
        }

        .hero-orb--b {
            bottom: -180px;
            left: -120px;
            width: 380px;
            height: 380px;
            background: rgba(77, 118, 255, 0.42);
            animation: orbFloat 26s ease-in-out infinite alternate-reverse;
        }

        @keyframes orbFloat {
            from { transform: translate3d(0, 0, 0) scale(1); }
            to   { transform: translate3d(36px, 26px, 0) scale(1.12); }
        }

        /* Zrno: bez njega velika jednobojna povrsina na jeftinim ekranima trakasti */
        .hero-grain {
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: 0.35;
            mix-blend-mode: overlay;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 780px;
            margin: 0 auto;
            padding: 92px 24px 100px;
            text-align: center;
        }

        /* Ulazak: svaki element krece sa svojim kasnjenjem preko --d */
        .reveal {
            opacity: 0;
            transform: translateY(14px);
            animation: revealUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: var(--d, 0ms);
        }

        @keyframes revealUp {
            to { opacity: 1; transform: none; }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 7px 16px 7px 12px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.24);
            color: #ffffff;
            font-size: 0.82rem;
            font-weight: 500;
            border-radius: 50px;
            margin-bottom: 26px;
            backdrop-filter: blur(8px);
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #4ade80;
            box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
            animation: badgePulse 2.6s ease-out infinite;
        }

        @keyframes badgePulse {
            70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
            100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.35rem, 5.6vw, 4rem);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.05;
            margin-bottom: 20px;
            letter-spacing: -0.04em;
            text-wrap: balance;
            text-shadow: 0 1px 24px rgba(2, 12, 40, 0.25);
        }

        .hero h1 em {
            font-style: normal;
            color: #B9CBFF;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.95);
            max-width: 560px;
            margin: 0 auto 36px;
            line-height: 1.6;
            text-wrap: pretty;
        }

        /* Tri kratke cinjenice ispod pretrage */
        .hero-facts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 24px;
            margin-top: 26px;
        }

        .hero-fact {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.87rem;
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-fact svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            color: #4ade80;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 64px;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: white;
        }

        .hero-stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* ========================================
           Features
        ======================================== */
        /* Stranica je sira, ali redovi teksta ostaju u citljivoj sirini */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            max-width: 1180px;
            margin-left: auto;
            margin-right: auto;
            gap: 24px;
        }

        .feature-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-200);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-lg);
            background: var(--primary-50);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
        }

        .feature-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.925rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ========================================
           How It Works
        ======================================== */
        .steps-container {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            position: relative;
            max-width: 1180px;
            margin-left: auto;
            margin-right: auto;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-size: 1.5rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .step-connector {
            position: absolute;
            top: 36px;
            left: calc(50% + 42px);
            right: calc(-50% + 42px);
            height: 2px;
            background: var(--border-medium);
            z-index: 1;
        }

        .step:last-child .step-connector {
            display: none;
        }

        .step h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .step p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto;
        }

        /* ========================================
           Pricing
        ======================================== */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .pricing-toggle-label {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.2s;
        }

        .pricing-toggle-label.active {
            color: var(--text-dark);
            font-weight: 600;
        }

        .pricing-toggle-switch {
            position: relative;
            width: 52px;
            height: 28px;
            background: var(--border-medium);
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .pricing-toggle-switch.active {
            background: var(--primary);
        }

        .pricing-toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s;
        }

        .pricing-toggle-switch.active::after {
            transform: translateX(24px);
        }

        .pricing-save-badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--green-light);
            color: var(--green);
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 50px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 26px;
            max-width: 1180px;
            /* Gornji razmak je za oznaku ("Najcesci izbor") koja stoji izvan
               kartice: bez njega je ulazila u traku sa ustedom iznad. */
            margin: 30px auto 0;
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px 32px;
            border: 2px solid var(--border-light);
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured::before {
            content: 'Najpopularniji';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 20px;
            background: var(--primary);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 50px;
            white-space: nowrap;
        }

        .pricing-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .pricing-description {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 24px;
            min-height: 40px;
        }

        .pricing-price {
            margin-bottom: 8px;
        }

        .pricing-full {
            display: block;
            margin-bottom: 2px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: line-through;
            text-decoration-thickness: 1px;
        }

        .pricing-amount {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1;
        }

        .pricing-currency {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .pricing-period {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .pricing-features {
            margin-bottom: 32px;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        .pricing-feature svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .pricing-feature .check {
            color: var(--green);
        }

        .pricing-feature .cross {
            color: var(--text-muted);
        }

        .pricing-card .btn {
            width: 100%;
        }

        .pricing-card.featured .btn-primary {
            background: var(--primary);
        }

        /* ========================================
           Testimonials
        ======================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--border-light);
            position: relative;
        }

        .testimonial-quote {
            color: var(--primary-200);
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 8px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .testimonial-role {
            color: var(--text-light);
            font-size: 0.825rem;
        }

        .testimonial-stars {
            color: #f59e0b;
            font-size: 0.875rem;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        /* ========================================
           FAQ
        ======================================== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            margin-bottom: 12px;
            overflow: hidden;
            background: white;
            transition: border-color 0.2s;
        }

        .faq-item:hover {
            border-color: var(--primary-200);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s;
            color: var(--text-muted);
        }

        .faq-question.open svg {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.925rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ========================================
           Footer
        ======================================== */
        .footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 0 0 28px;
        }

        /* Poziv na dnu, u svom okviru odvojenom od spiskova linkova */
        .footer-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
            margin: 0 0 56px;
            padding: 32px 36px;
            border-radius: 0 0 20px 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
        }

        .footer-cta h2 {
            font-family: var(--font-display);
            font-size: 1.45rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #fff;
            margin-bottom: 6px;
        }

        .footer-cta p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.82);
            max-width: 52ch;
        }

        .footer-cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-grid {
            display: grid;
            /* Prva kolona je o platformi, ostale su spiskovi linkova; kategorije
               i gradovi se crtaju samo kad katalog ima sta da ponudi. */
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about { max-width: 42ch; }

        .footer-logo {
            display: inline-block;
            margin-bottom: 14px;
        }

        .footer-brand-text {
            font-size: 0.9rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 14px;
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 16px;
        }

        .footer-social a {
            display: inline-flex;
            padding: 9px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: var(--radius-md);
            color: rgba(255, 255, 255, 0.75);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }

        .footer-social a:hover {
            border-color: rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .footer-mail {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.2s;
        }

        .footer-mail:hover { color: #fff; }
        .footer-mail svg { width: 16px; height: 16px; }

        .footer-heading {
            font-size: 0.78rem;
            font-weight: 700;
            color: white;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .footer-link {
            display: block;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.55);
            padding: 6px 0;
            transition: color 0.2s;
        }

        .footer-link:hover {
            color: white;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 22px;
            font-size: 0.825rem;
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.55);
            transition: color 0.2s;
        }

        .footer-legal a:hover { color: #fff; }

        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1.6fr repeat(2, 1fr);
                gap: 32px;
            }
        }

        @media (max-width: 700px) {
            .footer-cta {
                margin-bottom: 40px;
                padding: 26px 22px;
                border-radius: 0 0 16px 16px;
            }

            .footer-cta-actions { width: 100%; }
            .footer-cta-actions .btn { flex: 1; justify-content: center; }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 26px;
            }

            .footer-about { grid-column: 1 / -1; }

            .footer-bottom { justify-content: center; text-align: center; }
        }

        /* ========================================
           Animations
        ======================================== */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

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

        /* Bez animacije za korisnike koji su je iskljucili u sistemu */
        @media (prefers-reduced-motion: reduce) {
            .fade-up {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* ========================================
           Responsive
        ======================================== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .hero h1 {
                font-size: 2.75rem;
            }

            .section-title {
                font-size: 2rem;
            }

        }

        @media (max-width: 900px) {
            .navbar-links,
            .navbar-actions {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }
        }

        @media (max-width: 768px) {


            .hero {
                min-height: auto;
                padding: 80px 0 40px;
            }

            .hero-content {
                padding: 20px 24px 40px;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1.05rem;
            }

            .hero-stats {
                gap: 24px;
                flex-wrap: wrap;
            }

            .hero-stat-number {
                font-size: 1.5rem;
            }

            .section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                flex-direction: column;
                gap: 32px;
            }

            .step-connector {
                display: none;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .btn-lg {
                padding: 14px 28px;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.75rem;
            }


            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero h1 {
                font-size: 1.875rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .pricing-amount {
                font-size: 2.25rem;
            }

            .feature-card {
                padding: 24px;
            }

            .pricing-card {
                padding: 28px 20px;
            }
        }

        /* ========================================
           Hero Search Form
        ======================================== */
        .hero-search {
            position: relative;
            /* Iznad chipova i cinjenica ispod, da otvoreni dropdown ne bude
               precrtan njihovim tekstom dok im animacija jos traje. */
            z-index: 20;
            background: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 14px;
            padding: 6px;
            display: flex;
            align-items: center;
            gap: 4px;
            max-width: 620px;
            margin: 0 auto;
            box-shadow: 0 18px 40px -18px rgba(2, 12, 40, 0.55);
            transition: box-shadow 0.2s, border-color 0.2s;
        }

        .hero-search:focus-within {
            box-shadow: 0 18px 40px -18px rgba(2, 12, 40, 0.55), 0 0 0 4px rgba(122, 152, 255, 0.45);
        }

        .hero-search-field {
            flex: 1;
            min-width: 0;
            position: relative;
        }

        .hero-dropdown-trigger {
            width: 100%;
            padding: 14px 16px;
            border: none;
            background: transparent;
            font-size: 0.95rem;
            font-family: inherit;
            color: #374151;
            cursor: pointer;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            border-radius: 8px;
            transition: background 0.15s;
            text-align: left;
        }

        .hero-dropdown-trigger:hover {
            background: #f9fafb;
        }

        .hero-dropdown-trigger svg {
            flex-shrink: 0;
            color: #9ca3af;
        }

        .hero-dropdown {
            position: absolute;
            top: calc(100% + 8px);
            left: -8px;
            right: -8px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--border-medium);
            overflow: hidden;
            z-index: 100;
            /* Hero centrira svoj sadrzaj, a spisak opcija se cita s lijeva */
            text-align: left;
        }

        .hero-dropdown-search {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-bottom: 1px solid var(--border-light);
        }

        .hero-dropdown-search svg {
            width: 15px;
            height: 15px;
            flex-shrink: 0;
            color: var(--text-muted);
        }

        .hero-dropdown-search input {
            flex: 1;
            min-width: 0;
            border: 0;
            outline: 0;
            padding: 0;
            background: transparent;
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .hero-dropdown-search input::placeholder {
            color: var(--text-muted);
        }

        .hero-dropdown-list {
            max-height: min(260px, 45vh);
            overflow-y: auto;
            overscroll-behavior: contain;
        }

        .hero-dropdown-item {
            padding: 10px 16px;
            font-size: 0.9rem;
            color: var(--text-medium);
            cursor: pointer;
            transition: background 0.1s, color 0.1s;
        }

        .hero-dropdown-item:hover,
        .hero-dropdown-item.is-active {
            background: var(--primary-light);
            color: var(--primary);
        }

        .hero-dropdown-empty {
            padding: 14px 16px;
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .hero-search-divider {
            width: 1px;
            height: 32px;
            background: #e5e7eb;
            flex-shrink: 0;
        }

        .hero-search-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background: var(--primary-dark);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
            gap: 8px;
        }

        .hero-search-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .hero-search-btn svg {
            width: 20px;
            height: 20px;
        }

        /* ========================================
           Category Grid (Airbnb style)
        ======================================== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .category-card {
            display: flex;
            flex-direction: column;
            background: white;
            border: 1px solid var(--border-medium);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .category-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            box-shadow: 0 14px 30px -18px rgba(15, 23, 42, 0.45);
        }

        .category-card-media {
            position: relative;
            aspect-ratio: 4 / 3;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .category-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .category-card:hover .category-card-media img {
            transform: scale(1.05);
        }

        .category-card-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .category-card-placeholder svg {
            width: 42px;
            height: 42px;
            opacity: 0.45;
        }

        /* Broj oglasa stoji na slici: prvo pitanje je "ima li ista ovdje" */
        .category-card-count {
            position: absolute;
            top: 10px;
            right: 10px;
            min-width: 26px;
            padding: 3px 9px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.94);
            color: var(--text-dark);
            font-size: 0.76rem;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            text-align: center;
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.16);
        }

        .category-card-body {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 14px 16px;
        }

        .category-card-name {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .category-card-go {
            display: inline-flex;
            flex-shrink: 0;
            color: var(--text-muted);
            transition: transform 0.2s, color 0.2s;
        }

        .category-card-go svg {
            width: 16px;
            height: 16px;
        }

        .category-card:hover .category-card-go {
            color: var(--primary);
            transform: translateX(3px);
        }

        /* ========================================
           Business Cards (for search results)
        ======================================== */
        .business-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }

        .business-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-200);
        }

        .business-card-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .business-card-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .business-card-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .business-card-badge-category {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .business-card-badge-city {
            background: #ecfdf5;
            color: #059669;
        }

        .business-card-description {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .business-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: color 0.2s;
        }

        .business-card-link:hover {
            color: var(--primary-dark);
        }

        .business-card-link svg {
            width: 16px;
            height: 16px;
        }

        /* ========================================
           Responsive additions for new components
        ======================================== */
        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Na uskom ekranu polja postaju zasebni okviri sa razmakom. Kao dva
               reda razdvojena linijom od 1px izgledala su zbijeno. */
            .hero-search {
                flex-direction: column;
                gap: 8px;
                padding: 8px;
                border-radius: 16px;
            }

            .hero-search-field {
                width: 100%;
            }

            .hero-dropdown-trigger {
                padding: 13px 14px;
                border: 1px solid var(--border-medium);
                border-radius: 11px;
                background: #fff;
            }

            .hero-dropdown-trigger:hover {
                border-color: var(--border-dark);
            }

            .hero-dropdown {
                top: calc(100% + 6px);
                left: 0;
                right: 0;
            }

            /* Svako polje ima svoj okvir, pa razdjelnik nema sta da razdvaja */
            .hero-search-divider {
                display: none;
            }

            .hero-search-btn {
                width: 100%;
                padding: 14px;
                border-radius: 11px;
                margin-top: 2px;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

        }

        @media (max-width: 380px) {
            .category-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           Hero chips - jedan klik do kategorije
        ======================================== */
        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .hero-chips-label {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.82);
            margin-right: 2px;
        }

        .hero-chip {
            display: inline-flex;
            padding: 6px 14px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.13);
            border: 1px solid rgba(255, 255, 255, 0.26);
            color: #ffffff;
            font-size: 0.83rem;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
        }

        .hero-chip:hover {
            background: rgba(255, 255, 255, 0.24);
            border-color: rgba(255, 255, 255, 0.45);
        }

        /* Outline dugme za svijetle pozadine (btn-outline-white je za tamne) */
        .btn-outline {
            background: white;
            color: var(--primary-dark);
            border: 1.5px solid var(--border-dark);
        }

        .btn-outline:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }

        /* ========================================
           Gradovi
        ======================================== */
        .city-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .city-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            background: white;
            border: 1px solid var(--border-medium);
            border-radius: 50px;
            text-decoration: none;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .city-chip:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .city-chip svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            color: var(--primary);
        }

        .city-chip-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .city-chip-count {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary-dark);
            background: var(--primary-light);
            padding: 2px 9px;
            border-radius: 50px;
        }

        /* ========================================
           Split sekcija (tekst + ilustracija)
        ======================================== */
        .split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .split-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin: 16px 0;
        }

        .split-lead {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
            display: grid;
            gap: 14px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.975rem;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .check-list li svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--green);
        }

        .check-list strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .split-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .split-visual {
            display: flex;
            justify-content: center;
        }

        .cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        @media (max-width: 968px) {
            .split {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            /* Ilustracija ide iznad teksta na uzim ekranima */
            .split-visual {
                order: -1;
            }

            .split-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 640px) {
            .hero-chips {
                gap: 6px;
            }

            .hero-chips-label {
                width: 100%;
                margin: 0 0 4px;
            }

            .city-chip {
                padding: 10px 14px;
            }
        }


        /* ========================================
           Tabela poredjenja paketa
        ======================================== */
        .cmp-wrap {
            overflow-x: auto;
            border: 1px solid var(--border-medium);
            border-radius: var(--radius-xl);
            background: white;
        }

        .cmp-table {
            width: 100%;
            min-width: 560px;
            border-collapse: collapse;
            font-size: 0.925rem;
        }

        .cmp-table th,
        .cmp-table td {
            padding: 14px 18px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }

        .cmp-table thead th {
            position: sticky;
            top: 0;
            background: var(--bg-light);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .cmp-table tbody th[scope="row"] {
            text-align: left;
            font-weight: 500;
            color: var(--text-medium);
        }

        .cmp-table tbody tr:last-child th,
        .cmp-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .cmp-table tbody tr:hover th[scope="row"],
        .cmp-table tbody tr:hover td {
            background: var(--bg-light);
        }

        /* Istaknuti paket dobija traku kroz cijelu kolonu */
        .cmp-table th.is-featured,
        .cmp-table td.is-featured {
            background: var(--primary-light);
        }

        .cmp-table thead th.is-featured {
            color: var(--primary-dark);
        }

        .cmp-unlimited {
            font-weight: 600;
            color: var(--primary-dark);
        }

        .cmp-yes,
        .cmp-no {
            width: 19px;
            height: 19px;
        }

        .cmp-yes { color: var(--green); }
        .cmp-no { color: var(--border-dark); }

        .cmp-note {
            margin-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-light);
        }


        /* ========================================
           Naslovi na displej fontu
        ======================================== */
        .section-title,
        .split-title,
        .step h3,
        .feature-card h3,
        .footer-cta h2 {
            font-family: var(--font-display);
            letter-spacing: -0.02em;
        }

        .section-title {
            text-wrap: balance;
        }

        .section-badge {
            font-family: var(--font-body);
        }

        /* Sekcije dobijaju tanku liniju svjetla na vrhu umjesto tvrde granice */
        .section-light + .section-white,
        .section-white + .section-light {
            position: relative;
        }

        /* ========================================
           Micro-interakcije
        ======================================== */
        .category-card,
        .feature-card,
        .city-chip,
        .hero-chip {
            will-change: transform;
        }

        .feature-card {
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, border-color 0.25s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.08) rotate(-4deg);
        }

        .feature-icon {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .step-number {
            transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .step:hover .step-number {
            transform: translateY(-3px) scale(1.06);
        }

        /* Sve sto se krece stane kad korisnik to trazi */
        @media (prefers-reduced-motion: reduce) {
            .hero-orb,
            .hero-badge-dot,
            .reveal {
                animation: none !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        /* ========================================
           Animirani dnevni raspored u herou
           Jedan ciklus traje 7s. Svaki termin ima svoje keyframe-ove, pa ulaze
           jedan po jedan a nestaju svi zajedno.
        ======================================== */
        .cal {
            position: relative;
            width: 100%;
            max-width: 680px;
            margin: 0 auto;
        }

        .cal-card {
            background: #ffffff;
            border: 1px solid var(--border-medium);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
                        0 12px 24px -12px rgba(15, 23, 42, 0.14),
                        0 40px 60px -40px rgba(15, 23, 42, 0.28);
        }

        .cal-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 18px;
            border-bottom: 1px solid var(--border-light);
            background: #fcfcfd;
        }

        .cal-head-title {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.01em;
        }

        .cal-head-date {
            display: block;
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 1px;
        }

        .cal-head-tools {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cal-pill {
            padding: 5px 11px;
            border-radius: 7px;
            background: var(--primary);
            color: #fff;
            font-size: 0.74rem;
            font-weight: 600;
        }

        .cal-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border: 1px solid var(--border-medium);
            border-radius: 7px;
            color: var(--text-muted);
        }

        .cal-arrow svg { width: 13px; height: 13px; }

        .cal-body {
            display: grid;
            grid-template-columns: 58px 1fr;
            padding: 14px 18px 18px;
        }

        .cal-hours {
            display: flex;
            flex-direction: column;
            padding-top: 2px;
        }

        .cal-hours span {
            height: 68px;
            font-size: 0.72rem;
            font-variant-numeric: tabular-nums;
            color: var(--text-muted);
        }

        .cal-track {
            position: relative;
            height: 340px;
        }

        .cal-line {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(var(--t) * 68px + 8px);
            height: 1px;
            background: var(--border-light);
        }

        /* Crta trenutnog vremena klizi kroz dan */
        .cal-now {
            position: absolute;
            left: -6px;
            right: 0;
            height: 2px;
            background: #ef4444;
            border-radius: 2px;
            animation: calNow 7s linear infinite;
            z-index: 3;
        }

        .cal-now span {
            position: absolute;
            left: 0;
            top: -3px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
        }

        @keyframes calNow {
            from { top: 10px; }
            to   { top: 330px; }
        }

        .cal-appt {
            position: absolute;
            left: 0;
            right: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 1px;
            padding: 8px 12px;
            /* body nosi line-height 1.6, sto tri reda izgura izvan kartice */
            line-height: 1.2;
            border-radius: 10px;
            border-left: 3px solid var(--primary);
            background: var(--primary-light);
            opacity: 0;
            /* Svaka kartica ima svoje keyframe-ove umjesto zajednickih plus
               kasnjenja. Kasnjenje bi pomjerilo i nestajanje, pa bi pred kraj
               ciklusa raspored ostao prazan. Ovako ulaze jedna po jedna, a
               odlaze sve u istom trenutku. */
            animation-duration: 7s;
            animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
            animation-iteration-count: infinite;
            animation-fill-mode: both;
        }

        /* 62px, ne 56: na tri reda teksta se naziv usluge odsijecao */
        .cal-appt--a { top: 8px;   height: 64px; }
        .cal-appt--b { top: 110px; height: 64px; }
        .cal-appt--c { top: 178px; height: 64px; }
        .cal-appt--d { top: 246px; height: 64px; }

        /* Termin koji stigne uzivo dobija zeleni rub i kratki bljesak */
        .cal-appt.is-new {
            border-left-color: var(--green);
            background: #ecfdf5;
        }

        .cal-appt.is-new::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 10px;
            border: 2px solid rgba(5, 150, 105, 0.55);
            opacity: 0;
            animation: calFlash 7s ease-out infinite;
        }

        @keyframes calFlash {
            0%, 31%  { opacity: 1; transform: scale(1); }
            41%      { opacity: 0; transform: scale(1.05); }
            100%     { opacity: 0; }
        }

        .cal-appt-time {
            font-size: 0.72rem;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            color: var(--primary-dark);
        }

        .cal-appt.is-new .cal-appt-time { color: var(--green); }

        .cal-appt-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .cal-appt-svc {
            font-size: 0.75rem;
            color: var(--text-light);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .cal-appt--a { animation-name: calApptA; }
        .cal-appt--b { animation-name: calApptB; }
        .cal-appt--c { animation-name: calApptC; }
        .cal-appt--d { animation-name: calApptD; }

        /* Sve tri postojece su na ekranu do 1.1s, nova stize u 2.4s */
        @keyframes calApptA {
            0%, 1%    { opacity: 0; transform: translateY(8px) scale(0.985); }
            5%, 90%   { opacity: 1; transform: none; }
            96%, 100% { opacity: 0; transform: translateY(-6px); }
        }

        @keyframes calApptB {
            0%, 6%    { opacity: 0; transform: translateY(8px) scale(0.985); }
            11%, 90%  { opacity: 1; transform: none; }
            96%, 100% { opacity: 0; transform: translateY(-6px); }
        }

        @keyframes calApptC {
            0%, 11%   { opacity: 0; transform: translateY(8px) scale(0.985); }
            16%, 90%  { opacity: 1; transform: none; }
            96%, 100% { opacity: 0; transform: translateY(-6px); }
        }

        /* Ovaj stize uzivo, zajedno sa obavijesti */
        @keyframes calApptD {
            0%, 30%   { opacity: 0; transform: translateY(10px) scale(0.975); }
            36%, 90%  { opacity: 1; transform: none; }
            96%, 100% { opacity: 0; transform: translateY(-6px); }
        }

        /* Obavijest o novoj rezervaciji */
        .cal-toast {
            position: absolute;
            right: -14px;
            bottom: 46px;
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 11px 15px;
            background: #ffffff;
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.3);
            opacity: 0;
            animation: calToast 7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
        }

        .cal-toast-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #ecfdf5;
            color: var(--green);
            flex-shrink: 0;
        }

        .cal-toast-icon svg { width: 15px; height: 15px; }

        .cal-toast-text strong {
            display: block;
            font-size: 0.83rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .cal-toast-text span {
            display: block;
            font-size: 0.74rem;
            color: var(--text-light);
        }

        @keyframes calToast {
            0%, 30%   { opacity: 0; transform: translateY(12px) scale(0.96); }
            37%, 72%  { opacity: 1; transform: none; }
            79%, 100% { opacity: 0; transform: translateY(-8px); }
        }

        /* Brojac popunjenosti */
        .cal-chip {
            position: absolute;
            left: -18px;
            top: 92px;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 10px 14px;
            background: #ffffff;
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            box-shadow: 0 12px 30px -14px rgba(15, 23, 42, 0.3);
        }

        .cal-chip-num {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.03em;
        }

        .cal-chip-label {
            font-size: 0.7rem;
            line-height: 1.25;
            color: var(--text-light);
        }

        @media (max-width: 1024px) {
            .cal { margin: 0 auto; }
        }

        @media (max-width: 560px) {
            /* Na uskom ekranu bi znacka legla preko prvog termina */
            .cal-chip { display: none; }
            /* Ispod kartice, da ne pokriva bas onaj termin koji najavljuje */
            .cal-toast { right: -4px; bottom: -22px; padding: 9px 12px; }
            .cal-body { grid-template-columns: 48px 1fr; padding: 12px 14px 16px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .cal-appt,
            .cal-toast,
            .cal-now,
            .cal-appt.is-new::after {
                animation: none !important;
                opacity: 1;
            }

            .cal-now { top: 178px; }
        }

        /* ========================================
           Unutrasnje stranice: zaglavlje, alatna traka, kartice
           ----------------------------------------
           Kategorije, arhiva, gradovi i pretraga su do sada svaka nosile svoju
           kopiju istih stilova, u prefiksima ks-, kc- i bez prefiksa, i svaka
           je ostala na staroj plavoj (#3b82f6) dok je naslovnica presla na boju
           iz logotipa. Ovdje stoji jedan komplet za sve njih.
        ======================================== */
        /* Sadrzaj krece ispod fiksnog zaglavlja */
        .inner-page {
            padding-top: var(--header-h);
            min-height: 100vh;
            background: #fff;
        }

        .page-head {
            position: relative;
            overflow: hidden;
            padding: 40px 0 96px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
            color: #fff;
        }

        /* Ista mreza i isti mekani krug kao u herou na naslovnoj, samo tise */
        .page-head::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 40%, transparent 100%);
            pointer-events: none;
        }

        .page-head::after {
            content: '';
            position: absolute;
            top: -180px;
            right: -120px;
            width: 460px;
            height: 460px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(77, 118, 255, 0.55) 0%, transparent 68%);
            pointer-events: none;
        }

        .page-head .container {
            position: relative;
            z-index: 1;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.72);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.72);
            transition: color 0.2s;
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb-sep {
            opacity: 0.5;
        }

        .breadcrumb-current {
            color: #fff;
            font-weight: 500;
        }

        .page-title {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3.4vw, 2.85rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .page-lede {
            max-width: 68ch;
            font-size: 1.02rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.86);
        }

        .page-lede strong {
            color: #fff;
            font-weight: 600;
        }

        /* Stranica bez .inner-page omotaca sama pravi mjesta za fiksni navbar */
        .page-head--top {
            padding-top: calc(var(--header-h) + 40px);
        }

        /* Stranica bez alatne trake nema sta da uvuce u zaglavlje, pa mu se
           donji prostor vraca na normalu. */
        .page-head--plain {
            padding-bottom: 44px;
        }

        .results-section--top {
            padding-top: 40px;
        }

        /* Bijela traka ulazi u plavo zaglavlje, pa filteri stoje uz naslov a ne
           kao jos jedan pojas ispod njega. */
        .page-toolbar {
            position: relative;
            z-index: 3;
            margin-top: -56px;
            margin-bottom: 36px;
            padding: 18px 20px;
            background: #fff;
            border: 1px solid var(--border-medium);
            border-radius: 18px;
            box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.55);
        }

        .page-toolbar-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        /* ---- Cipovi (gradovi, kategorije) ---- */
        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border: 1px solid var(--border-medium);
            border-radius: 50px;
            background: #fff;
            font-size: 0.86rem;
            font-weight: 500;
            color: var(--text-medium);
            transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
        }

        .chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-1px);
        }

        .chip-count {
            font-size: 0.76rem;
            font-variant-numeric: tabular-nums;
            color: var(--text-muted);
        }

        .chip--active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .chip--active .chip-count {
            color: rgba(255, 255, 255, 0.75);
        }

        .chip--active:hover {
            color: #fff;
            background: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* ---- Traka sa brojem rezultata ---- */
        .results-bar {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .results-count {
            font-size: 0.95rem;
            color: var(--text-light);
        }

        .results-count strong {
            color: var(--text-dark);
            font-weight: 700;
            font-variant-numeric: tabular-nums;
        }

        .results-note {
            font-size: 0.84rem;
            color: var(--text-muted);
        }

        /* ---- Kartica objekta ---- */
        .listing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 22px;
        }

        .listing-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--border-medium);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .listing-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-200);
            box-shadow: 0 18px 34px -22px rgba(15, 23, 42, 0.45);
        }

        .listing-card-media {
            position: relative;
            display: block;
            aspect-ratio: 4 / 3;
            background: var(--primary-light);
            overflow: hidden;
        }

        .listing-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .listing-card:hover .listing-card-media img {
            transform: scale(1.04);
        }

        .listing-card-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--primary);
        }

        .listing-card-placeholder svg {
            width: 40px;
            height: 40px;
            opacity: 0.4;
        }

        /* Ocjena stoji na slici: to je prvo po cemu se kartice porede */
        .listing-card-rating {
            position: absolute;
            top: 10px;
            left: 10px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 9px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.95);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-dark);
            font-variant-numeric: tabular-nums;
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
        }

        .listing-card-rating svg {
            width: 12px;
            height: 12px;
        }

        .listing-card-rating span {
            font-weight: 400;
            color: var(--text-light);
        }

        .listing-card-body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 16px 18px 18px;
        }

        .listing-card-name {
            font-family: var(--font-display);
            font-size: 1.04rem;
            font-weight: 700;
            letter-spacing: -0.015em;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .listing-card-name a:hover {
            color: var(--primary);
        }

        /* Kategorija i grad kao tekst, ne kao jos dvije sarene pilule */
        .listing-card-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .listing-card-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--border-dark);
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 9px;
            border-radius: 50px;
            font-size: 0.74rem;
            font-weight: 600;
        }

        .tag--verified {
            background: var(--green-light);
            color: var(--green);
        }

        .listing-card-desc {
            font-size: 0.875rem;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Dugme stoji na dnu kartice bez obzira koliko je opisa iznad njega */
        .listing-card-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            padding-top: 4px;
        }

        .listing-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 16px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 0.875rem;
            font-weight: 600;
            transition: background 0.2s, transform 0.2s;
        }

        .listing-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .listing-btn svg {
            width: 15px;
            height: 15px;
        }

        .listing-btn--ghost {
            background: transparent;
            color: var(--text-medium);
            border: 1px solid var(--border-medium);
        }

        .listing-btn--ghost:hover {
            background: var(--primary-light);
            border-color: var(--primary-200);
            color: var(--primary-dark);
        }

        /* ---- Paginacija ---- */
        .pager {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            margin-top: 40px;
        }

        .pager-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .pager-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border: 1px solid var(--border-medium);
            border-radius: 10px;
            background: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            font-variant-numeric: tabular-nums;
            color: var(--text-medium);
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }

        .pager-link svg {
            width: 16px;
            height: 16px;
        }

        a.pager-link:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .pager-link.is-active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        .pager-link.is-disabled {
            color: var(--text-muted);
            opacity: 0.55;
        }

        .pager-gap {
            padding: 0 4px;
            color: var(--text-muted);
        }

        /* Broj rezultata je podatak uz listu, ne dio dugmadi, pa stoji ispod
           njih i tise. Ranije je stajao pribijen uz njih i na engleskom. */
        .pager-info {
            font-size: 0.85rem;
            color: var(--text-light);
            font-variant-numeric: tabular-nums;
        }

        /* ---- Prazno stanje ---- */
        .empty {
            max-width: 520px;
            margin: 0 auto;
            padding: 56px 24px;
            text-align: center;
        }

        .empty-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            margin-bottom: 18px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
        }

        .empty-icon svg {
            width: 28px;
            height: 28px;
        }

        .empty h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .empty p {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--text-light);
        }

        /* ---- Uvodni tekst u zaglavlju stranica kategorija ---- */
        .page-head .facts-text {
            margin-top: 14px;
        }

        .page-head .facts-text p {
            margin: 0 0 10px;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.78);
        }

        .page-head .facts-text p:last-child {
            margin-bottom: 0;
        }

        /* ---- Unutrasnje veze na dnu ---- */
        .link-cloud {
            padding: 48px 0 64px;
            border-top: 1px solid var(--border-light);
            background: var(--bg-light);
        }

        .link-cloud h2 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .link-cloud + .link-cloud {
            border-top: 0;
            padding-top: 0;
        }

        .link-cloud-group + .link-cloud-group {
            margin-top: 28px;
        }

        /* ---- Sekcija sa rezultatima ---- */
        .results-section {
            padding-bottom: 64px;
        }

        @media (max-width: 768px) {
            .page-head {
                padding: 28px 0 84px;
            }

            /* Bez omotaca .inner-page zaglavlje samo pravi mjesta za navbar */
            .page-head--top {
                padding-top: calc(var(--header-h) + 28px);
            }

            .page-toolbar {
                margin-top: -48px;
                padding: 16px;
            }

            .listing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            /* Na telefonu je slika 4:3 pola ekrana; nize je dovoljno */
            .listing-card-media {
                aspect-ratio: 16 / 9;
            }

            .link-cloud {
                padding: 36px 0 48px;
            }
        }

        /* ---- Filter forma u alatnoj traci (pretraga) ---- */
        .filter-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1.6fr auto;
            gap: 12px;
            align-items: end;
        }

        .filter-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .filter-field label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .filter-field select,
        .filter-field input {
            width: 100%;
            height: 46px;
            padding: 0 14px;
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            background: #fff;
            font-family: inherit;
            font-size: 0.925rem;
            color: var(--text-dark);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .filter-field select {
            /* Vlastita strelica, jer se sistemska razlikuje po platformama */
            appearance: none;
            -webkit-appearance: none;
            padding-right: 38px;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
        }

        .filter-field select:focus,
        .filter-field input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-100);
        }

        .filter-field input::placeholder {
            color: var(--text-muted);
        }

        /* Padajuci izbornik sa pretragom. Vrijednost i dalje nosi select, koji
           se sakrije tek kad skripta krene; bez nje ostaje obican izbornik. */
        .combo { position: relative; }

        .combo .combo-native {
            position: absolute;
            left: 0; top: 0;
            width: 100%; height: 100%;
            opacity: 0;
            pointer-events: none;
        }

        .combo .combo-trigger { position: relative; z-index: 1; }

        .filter-field button.combo-trigger {
            display: block;
            width: 100%;
            height: 46px;
            padding: 0 38px 0 14px;
            text-align: left;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            background-color: #fff;
            font-family: inherit;
            font-size: 0.925rem;
            color: var(--text-dark);
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
        }

        .filter-field button.combo-trigger.is-empty { color: var(--text-muted); }

        .filter-field .combo-trigger:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px var(--primary-100);
        }

        .combo-list {
            position: absolute;
            z-index: 30;
            top: calc(100% + 4px);
            left: 0;
            right: 0;
            max-height: 260px;
            overflow-y: auto;
            margin: 0;
            padding: 4px;
            list-style: none;
            background: #fff;
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .combo-item {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            gap: 10px;
            padding: 9px 10px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-dark);
            cursor: pointer;
        }

        .combo-item small { color: var(--text-light); font-size: 0.78rem; flex-shrink: 0; }
        .combo-item.is-active { background: var(--primary-50); }
        .combo-empty { padding: 10px; font-size: 0.9rem; color: var(--text-light); }

        .filter-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            height: 46px;
            padding: 0 22px;
            border: 0;
            border-radius: 12px;
            background: var(--primary);
            color: #fff;
            font-family: inherit;
            font-size: 0.925rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .filter-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .filter-submit svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 900px) {
            .filter-form {
                grid-template-columns: 1fr 1fr;
            }

            .filter-field--wide,
            .filter-submit {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 560px) {
            .filter-form {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
           Stranica biznisa
           ----------------------------------------
           Prije je 894 reda ovih stilova stajalo u samoj stranici, pa ih je
           preglednik skidao iznova pri svakom otvaranju bilo kojeg objekta.
           Boje su prevedene sa stare plave na paletu iz logotipa.
        ======================================== */
    /* ========================================
       Business Page (bp- prefix)
    ======================================== */
    /* Zaglavlje stranice biznisa je zajednicko .page-head; ovdje ostaju samo
       oznake ispod naslova i dugme za omiljeno, koji su njemu svojstveni. */
    .page-head-title {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px 16px;
        margin-bottom: 14px;
    }

    .page-head-title .page-title {
        margin-bottom: 0;
    }

    .bp-hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
        z-index: 2;
    }

    .bp-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    .bp-hero-badge svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

    .bp-hero-badge-rating {
        background: rgba(245, 158, 11, 0.25);
        color: #fde68a;
    }

    /* ========================================
       Main Content
    ======================================== */
    .bp-content {
        padding: 32px 0 60px;
    }

    .bp-grid {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 32px;
    }

    .bp-main {
        min-width: 0;
    }

    /* Kartica sa telefonom i zakazivanjem prati citanje: stranica objekta zna
       biti duga, a ono zbog cega je posjetilac dosao stoji na njenom vrhu. */
    .bp-sidebar {
        position: sticky;
        top: 92px;
        align-self: start;
    }

    /* ========================================
       Left Column Sections
    ======================================== */
    .bp-section {
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid var(--border-medium);
        padding: 24px;
        margin-bottom: 24px;
    }

    .bp-section-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .bp-description {
        font-size: 0.95rem;
        color: var(--text-medium);
        line-height: 1.7;
    }

    .bp-hours-table {
        width: 100%;
    }

    .bp-hours-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 0.875rem;
    }

    .bp-hours-row-today {
        background: var(--primary-light);
        font-weight: 600;
    }

    .bp-hours-day {
        color: var(--text-medium);
    }

    .bp-hours-day-today {
        color: var(--primary-dark);
    }

    .bp-hours-time {
        color: var(--text-dark);
    }

    .bp-hours-time-today {
        color: var(--primary-dark);
    }

    .bp-hours-closed {
        color: #ef4444;
    }

    .bp-map-container {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border-medium);
    }

    .bp-map-container iframe {
        display: block;
        border: 0;
    }

    .bp-map-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem;
        background: var(--bg-light);
        color: var(--primary);
        font-size: 0.85rem;
        font-weight: 500;
        text-decoration: none;
        border-top: 1px solid var(--border-medium);
        transition: background 0.2s;
    }

    .bp-map-link:hover {
        background: var(--primary-light);
    }

    .bp-map-link svg {
        width: 16px;
        height: 16px;
    }

    /* ========================================
       Sidebar
    ======================================== */
    .bp-sidebar-card {
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid var(--border-medium);
        padding: 24px;
        margin-bottom: 24px;
    }

    .bp-sidebar-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--text-medium);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* Redovi sa podacima: ikona, pa vrijednost, sa razmakom koji se vidi */
    .bp-info-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-medium);
        padding: 11px 0;
        border-top: 1px solid var(--border-light);
    }

    .bp-info-row:first-of-type {
        border-top: 0;
    }

    .bp-info-row svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .bp-info-row a {
        color: var(--primary);
        font-weight: 500;
        text-decoration: none;
    }

    .bp-info-row a:hover {
        text-decoration: underline;
    }

    /* Ocjena: broj, zvjezdice i broj recenzija u svom bloku */
    .bp-rating-big {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 4px 0 14px;
    }

    .bp-rating-stars {
        display: flex;
        gap: 2px;
        margin-bottom: 2px;
    }

    .bp-rating-stars svg {
        width: 18px;
        height: 18px;
    }

    .bp-rating-number {
        font-size: 1.9rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -0.02em;
        color: var(--text-dark);
    }

    .bp-rating-count {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    /*
     * Pripisivanje izvora za ocjene i fotografije sa Googlea.
     *
     * Stajalo je pribijeno uz broj recenzija, pa je izgledalo kao dio ocjene.
     * Sada je odvojeno linijom i tise, kako pripisivanje i treba da stoji: mora
     * se vidjeti, ali nije podatak o biznisu.
     */
    .bp-attribution {
        margin: 0 0 14px;
        padding-top: 12px;
        border-top: 1px solid var(--border-light);
        font-size: 0.78rem;
        line-height: 1.5;
        color: var(--text-muted);
    }

    .bp-attribution a {
        color: var(--text-light);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .bp-attribution a:hover {
        color: var(--primary);
    }

    /* Ispod slajdera pripisivanje stoji samo za sebe, bez linije iznad */
    .bp-slider-wrapper .bp-attribution {
        margin: 10px 0 0;
        padding-top: 0;
        border-top: 0;
        text-align: center;
    }

    /* Claim Card */
    .bp-claim-card {
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--green-light) 100%);
        border-radius: 12px;
        border: 1px solid var(--primary-200);
        padding: 24px;
        margin-bottom: 24px;
    }

    .bp-claim-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .bp-claim-text {
        font-size: 0.85rem;
        color: var(--text-medium);
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .bp-claim-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
        width: 100%;
        justify-content: center;
    }

    .bp-claim-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    .bp-claim-btn svg {
        width: 18px;
        height: 18px;
    }

    .bp-claim-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .bp-claim-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: var(--green);
    }

    .bp-claim-feature svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* ========================================
       Similar Businesses
    ======================================== */
    .bp-similar {
        padding: 48px 0 0;
    }

    .bp-similar-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 24px;
    }

    /* Na tabletu kartica sa kontaktom ide iznad sadrzaja, ne pored njega */
    @media (max-width: 1024px) {
        .bp-grid {
            grid-template-columns: 1fr;
        }

        .bp-sidebar {
            position: static;
            order: -1;
        }
    }

    /* ========================================
       Claim Modal
    ======================================== */
    .bp-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .bp-modal {
        background: #ffffff;
        border-radius: 16px;
        width: 100%;
        max-width: 480px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .bp-modal-header {
        padding: 24px 24px 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .bp-modal-header h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

    .bp-modal-header p {
        font-size: 0.85rem;
        color: var(--text-light);
        margin: 4px 0 0;
    }

    .bp-modal-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: var(--text-muted);
        transition: color 0.2s;
    }

    .bp-modal-close:hover {
        color: var(--text-medium);
    }

    .bp-modal-close svg {
        width: 24px;
        height: 24px;
    }

    .bp-modal-body {
        padding: 20px 24px 24px;
    }

    .bp-modal-field {
        margin-bottom: 16px;
    }

    .bp-modal-label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--text-medium);
        margin-bottom: 6px;
    }

    .bp-modal-input {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid var(--border-dark);
        border-radius: 8px;
        font-size: 0.9rem;
        font-family: inherit;
        color: var(--text-dark);
        transition: border-color 0.2s;
        box-sizing: border-box;
    }

    .bp-modal-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .bp-modal-input[readonly] {
        background: var(--bg-light);
        color: var(--text-light);
    }

    .bp-modal-textarea {
        width: 100%;
        padding: 10px 14px;
        border: 1px solid var(--border-dark);
        border-radius: 8px;
        font-size: 0.9rem;
        font-family: inherit;
        color: var(--text-dark);
        resize: vertical;
        min-height: 80px;
        transition: border-color 0.2s;
        box-sizing: border-box;
    }

    .bp-modal-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .bp-modal-submit {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        font-family: inherit;
    }

    .bp-modal-submit:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    .bp-modal-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .bp-modal-error {
        font-size: 0.75rem;
        color: #dc2626;
        margin-top: 4px;
    }

    .bp-modal-success {
        text-align: center;
        padding: 32px 24px;
    }

    .bp-modal-success svg {
        width: 56px;
        height: 56px;
        color: var(--green);
        margin-bottom: 16px;
    }

    .bp-modal-success h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 8px;
    }

    .bp-modal-success p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
        line-height: 1.5;
    }

    /* ========================================
       Photo Gallery Slider
    ======================================== */
    /* Ista sirina kao .container (1420 sa 24px unutrasnjeg razmaka), inace
       slajder stoji uzi od svega ispod njega. */
    .bp-slider-wrapper {
        max-width: 1420px;
        margin: 0 auto;
        padding: 24px 24px 0;
    }

    .bp-slider {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .bp-slider-track {
        display: flex;
        gap: 16px;
        transition: transform 0.4s ease;
    }

    .bp-slider-slide {
        min-width: calc(50% - 8px);
        aspect-ratio: 16/10;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--border-medium);
        background: var(--border-light);
    }

    .bp-slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .bp-slider-slide img:hover {
        transform: scale(1.03);
    }

    .bp-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        color: var(--text-dark);
        border: 1px solid var(--border-medium);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 3;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .bp-slider-btn:hover { background: #ffffff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }
    .bp-slider-btn svg { width: 20px; height: 20px; }
    .bp-slider-btn-prev { left: 12px; }
    .bp-slider-btn-next { right: 12px; }

    .bp-slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
    }

    .bp-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-dark);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.2s;
    }

    .bp-slider-dot-active {
        background: var(--primary);
        transform: scale(1.3);
    }

    /* Lightbox */
    .bp-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bp-lightbox-img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 4px;
    }

    .bp-lightbox-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #ffffff;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        z-index: 10000;
        transition: background 0.2s;
    }

    .bp-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
    .bp-lightbox-close svg { width: 24px; height: 24px; }

    .bp-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .bp-lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
    .bp-lightbox-nav svg { width: 24px; height: 24px; }
    .bp-lightbox-prev { left: 16px; }
    .bp-lightbox-next { right: 16px; }

    .bp-lightbox-counter {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 20px;
    }

    @media (max-width: 768px) {
        .bp-content { padding: 24px 0 40px; }
        .bp-modal { margin: 10px; }
        .bp-slider-wrapper { padding: 16px 16px 0; }
        .bp-slider-slide { min-width: 100%; }
        .bp-slider-track { gap: 0; touch-action: pan-y; }
        .bp-slider-btn { display: none; }
        .bp-lightbox-nav { width: 40px; height: 40px; }
    }

        /* ========================================
           Stranica biznisa: traka sa radnjama na telefonu
           ----------------------------------------
           Na uskom ekranu dugmad zavrse ispod duge stranice, pa se do poziva
           dolazi tek nakon dosta listanja. Traka stoji na dnu ekrana.
        ======================================== */
        .bp-actionbar {
            display: none;
        }

        @media (max-width: 768px) {
            .bp-actionbar {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 900;
                display: flex;
                gap: 10px;
                padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(10px);
                border-top: 1px solid var(--border-medium);
                box-shadow: 0 -6px 24px -18px rgba(15, 23, 42, 0.6);
            }

            .bp-actionbar a {
                flex: 1;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                height: 46px;
                border-radius: 12px;
                font-size: 0.95rem;
                font-weight: 600;
                background: var(--primary);
                color: #fff;
            }

            .bp-actionbar a svg {
                width: 17px;
                height: 17px;
            }

            .bp-actionbar a.bp-actionbar-ghost {
                background: #fff;
                color: var(--text-dark);
                border: 1px solid var(--border-medium);
            }

            /* Da traka ne pokrije podnozje */
            .inner-page:has(.bp-actionbar) {
                padding-bottom: 72px;
            }
        }

        /* ========================================
           Stranica za vlasnike biznisa (/partneri)
           ----------------------------------------
           Isto kao kod stranice biznisa: stilovi su stajali u samoj stranici,
           102 KB pri svakom otvaranju, i na staroj plavoj.
        ======================================== */
        .prt-hero {
            min-height: auto;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

    /* ========================================
       HERO EXTENSIONS
    ======================================== */
    .prt-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50px;
        color: #ffffff;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 24px;
    }
    .prt-hero-badge svg { width: 16px; height: 16px; }
    .prt-hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }
    .prt-hero-subtitle {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.85);
        max-width: 600px;
        margin: 0 auto 36px;
        line-height: 1.7;
    }
    .prt-hero-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 48px;
    }
    /* Tri tvrdnje ispod naslova. Nisu brojevi, jer brojeve ne bismo mogli
       potkrijepiti; ovo su stvari koje se mogu provjeriti na sajtu. */
    .prt-hero-facts {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 40px;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .prt-hero-facts span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.92);
    }

    .prt-hero-facts span::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--primary-bright);
    }

    /* ========================================
       PAIN POINTS
    ======================================== */
    .prt-pain-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
        margin: 0 auto;
    }
    .prt-pain-card {
        background: #ffffff;
        border: 1px solid var(--border-light);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.3s ease;
    }
    .prt-pain-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    .prt-pain-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: #fef2f2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: #dc2626;
    }
    .prt-pain-icon svg { width: 24px; height: 24px; }
    .prt-pain-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }
    .prt-pain-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    /* ========================================
       SHOWCASE LAYOUT (mockup + text)
    ======================================== */
    .prt-showcase {
        display: flex;
        gap: 56px;
        align-items: center;
        margin-bottom: 100px;
    }
    .prt-showcase:last-child { margin-bottom: 0; }
    .prt-showcase-reverse { flex-direction: row-reverse; }
    .prt-showcase-mockup { flex: 1.2; min-width: 0; }
    .prt-showcase-text { flex: 1; }
    .prt-showcase-badge {
        display: inline-flex;
        padding: 5px 14px;
        background: var(--primary-50);
        color: var(--primary);
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 20px;
        margin-bottom: 12px;
    }
    .prt-showcase-text h3 {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 14px;
        line-height: 1.2;
    }
    .prt-showcase-text > p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .prt-check-list { list-style: none; padding: 0; margin: 0; }
    .prt-check-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text-medium);
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .prt-check-list svg {
        width: 18px;
        height: 18px;
        color: var(--green);
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* ========================================
       BROWSER FRAME MOCKUP
    ======================================== */
    /* Ispod svakog prikaza stoji da je to snimak ekrana iz panela, da se
       brojevi u njemu ne procitaju kao podaci o platformi. */
    .prt-showcase-mockup::after {
        content: 'Prikaz ekrana u panelu';
        display: block;
        margin-top: 12px;
        font-size: 0.78rem;
        color: var(--text-muted);
        text-align: center;
    }

    /* Telefon nije panel, ni poruka: potpis prati ono sto se zaista vidi */
    .prt-showcase-mockup--phone::after { content: 'Prikaz stranice za zakazivanje'; }
    .prt-showcase-mockup--email::after { content: 'Prikaz poruke koju klijent dobije'; }

    .prt-mockup-frame {
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 25px 60px -25px rgba(15, 23, 42, 0.45);
        overflow: hidden;
        border: 1px solid var(--border-medium);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .prt-mockup-frame:hover {
        transform: scale(1.015);
        box-shadow: 0 30px 70px rgba(0,0,0,0.16);
    }
    .prt-mockup-toolbar {
        background: var(--border-light);
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 6px;
        border-bottom: 1px solid var(--border-medium);
    }
    .prt-mockup-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }
    .prt-dot-red { background: #ef4444; }
    .prt-dot-yellow { background: #f59e0b; }
    .prt-dot-green { background: #22c55e; }
    .prt-mockup-url {
        flex: 1;
        background: #ffffff;
        border-radius: 6px;
        padding: 5px 12px;
        font-size: 0.6rem;
        color: var(--text-muted);
        margin-left: 8px;
        border: 1px solid var(--border-medium);
    }
    .prt-mockup-content {
        padding: 0;
        min-height: 260px;
    }

    /* ========================================
       PHONE FRAME MOCKUP
    ======================================== */
    /*
     * Telefon.
     *
     * Bio je bijeli okvir sa crnom pilulom na vrhu, sto nije licilo na telefon.
     * Sada ima tamno kuciste, ekran uvucen u njega, ostrvo na vrhu, dugmad sa
     * strane i crticu na dnu. Unutra stoji stvarna stranica za zakazivanje.
     */
    .prt-phone {
        position: relative;
        width: 300px;
        margin: 0 auto;
        padding: 11px;
        border-radius: 46px;
        background: linear-gradient(155deg, #2c3444 0%, #0b1120 55%, #1b2333 100%);
        box-shadow:
            0 34px 60px -26px rgba(15, 23, 42, 0.75),
            inset 0 0 0 1.5px rgba(255, 255, 255, 0.10);
        transition: transform 0.4s ease;
    }

    .prt-phone:hover { transform: translateY(-4px); }

    /*
     * Dugmad sa strane. Bila su na fiksnim pikselima, pa su na uzem prikazu
     * padala u zaobljeni ugao kucista. Sada su u postocima visine, pa stoje
     * jednako i na 300px i na 268px sirine.
     */
    .prt-phone-btn {
        position: absolute;
        width: 3px;
        border-radius: 4px;
        background: #232b3a;
    }

    .prt-phone-btn--vol-up { left: -3px; top: 18%; height: 7%; }
    .prt-phone-btn--vol-down { left: -3px; top: 27%; height: 7%; }
    .prt-phone-btn--power { right: -3px; top: 24%; height: 11%; }

    .prt-phone-screen {
        position: relative;
        border-radius: 36px;
        background: #fff;
        overflow: hidden;
    }

    /* Statusna traka i ostrvo */
    .prt-phone-status {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 30px;
        padding: 0 18px;
        background: var(--primary);
        color: #fff;
        font-size: 0.6rem;
        font-weight: 600;
    }

    .prt-phone-status-icons { display: flex; align-items: flex-end; gap: 2px; }

    .prt-phone-status-icons i {
        display: block;
        width: 3px;
        border-radius: 1px;
        background: rgba(255, 255, 255, 0.9);
    }

    .prt-phone-status-icons i:nth-child(1) { height: 4px; }
    .prt-phone-status-icons i:nth-child(2) { height: 6px; }
    .prt-phone-status-icons i:nth-child(3) { height: 8px; }

    .prt-phone-status-icons b {
        position: relative;
        width: 16px;
        height: 8px;
        margin-left: 5px;
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 2px;
    }

    .prt-phone-status-icons b::after {
        content: '';
        position: absolute;
        inset: 1.5px;
        right: 5px;
        background: #fff;
        border-radius: 1px;
    }

    .prt-phone-island {
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 74px;
        height: 18px;
        border-radius: 99px;
        background: #0b1120;
        z-index: 2;
    }

    /* Visina je tolika da dugme na dnu stane u cijelosti: odsjeceno dugme
       izgleda kao greska, a ne kao ekran koji se dalje skrola. */
    .prt-phone-body {
        max-height: 520px;
        overflow: hidden;
        padding-bottom: 18px;
    }

    /* Crtica na dnu ekrana */
    .prt-phone-home {
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 96px;
        height: 4px;
        border-radius: 99px;
        background: rgba(17, 24, 39, 0.28);
    }

    /* ---- Sadrzaj: stvarna stranica za zakazivanje ---- */
    .prt-booking-header {
        padding: 14px 16px 16px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
    }

    .prt-booking-business { font-size: 0.92rem; font-weight: 700; letter-spacing: -0.01em; }
    .prt-booking-address { font-size: 0.62rem; color: rgba(255, 255, 255, 0.82); margin-top: 3px; }

    /* Tri koraka, isti kao na stranici */
    .prt-booking-steps {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 16px;
        border-bottom: 1px solid var(--border-light);
    }

    .prt-booking-steps span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.56rem;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .prt-booking-steps span::before {
        content: attr(data-step);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 1px solid var(--border-dark);
        font-size: 0.5rem;
        font-weight: 700;
    }

    .prt-booking-steps span.is-active { color: var(--text-dark); font-weight: 600; }
    .prt-booking-steps span.is-active::before { background: var(--primary); border-color: var(--primary); color: #fff; }
    .prt-booking-steps hr { flex: 1; height: 1px; border: 0; background: var(--border-medium); }

    .prt-booking-main { padding: 12px 16px 0; }

    .prt-booking-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 10px;
        margin-bottom: 7px;
        border-radius: 8px;
        background: var(--bg-light);
        border: 1px solid var(--border-light);
        font-size: 0.62rem;
        font-weight: 600;
        color: var(--text-medium);
    }

    .prt-booking-group span { font-weight: 400; color: var(--text-muted); }

    .prt-booking-service {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 9px 10px;
        margin-bottom: 6px;
        border: 1px solid var(--border-medium);
        border-radius: 9px;
    }

    .prt-booking-service.selected {
        border-color: var(--primary);
        background: var(--primary-light);
        box-shadow: 0 0 0 2px var(--primary-100);
    }

    .prt-booking-service-name { font-size: 0.7rem; font-weight: 600; color: var(--text-dark); }
    .prt-booking-service-meta { font-size: 0.58rem; color: var(--text-muted); margin-top: 1px; }
    .prt-booking-service-price { font-size: 0.7rem; font-weight: 700; color: var(--primary-dark); white-space: nowrap; }

    .prt-booking-label {
        margin: 12px 0 6px;
        font-size: 0.56rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .prt-booking-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 10px; }

    .prt-booking-day {
        padding: 5px 0 6px;
        border: 1px solid var(--border-medium);
        border-radius: 8px;
        text-align: center;
        line-height: 1.25;
    }

    .prt-booking-day em { display: block; font-style: normal; font-size: 0.5rem; color: var(--text-muted); }
    .prt-booking-day strong { font-size: 0.66rem; color: var(--text-dark); }
    .prt-booking-day.selected { background: var(--primary); border-color: var(--primary); }
    .prt-booking-day.selected em { color: rgba(255, 255, 255, 0.8); }
    .prt-booking-day.selected strong { color: #fff; }

    .prt-booking-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

    .prt-booking-slot {
        padding: 7px 2px;
        border: 1px solid var(--border-medium);
        border-radius: 8px;
        text-align: center;
        font-size: 0.64rem;
        color: var(--text-medium);
    }

    .prt-booking-slot.selected { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
    .prt-booking-slot.is-taken { color: var(--text-muted); background: var(--bg-light); text-decoration: line-through; }

    .prt-booking-btn {
        margin: 12px 0 0;
        padding: 10px;
        border-radius: 10px;
        background: var(--primary);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 600;
        text-align: center;
    }

    /* ========================================
       Prikaz poruke (email)
       ----------------------------------------
       Isti izgled kao stvarna poruka iz resources/views/emails/layout.blade.php:
       plavo zaglavlje, znacka stanja, tabela sa podacima, dugme.
    ======================================== */
    .prt-email-window {
        max-width: 420px;
        margin: 0 auto;
        background: #fff;
        border: 1px solid var(--border-medium);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 25px 60px -25px rgba(15, 23, 42, 0.45);
        text-align: left;
    }

    .prt-email-head {
        padding: 16px 18px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
        color: #fff;
    }

    .prt-email-brand {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.72);
        margin-bottom: 5px;
    }

    .prt-email-title { font-size: 1rem; font-weight: 700; }
    .prt-email-sub { font-size: 0.75rem; color: rgba(255, 255, 255, 0.85); margin-top: 2px; }

    .prt-email-body { padding: 18px; font-size: 0.8rem; color: var(--text-medium); }
    .prt-email-body p { margin: 0 0 10px; }

    .prt-email-status {
        display: inline-block;
        padding: 4px 10px;
        margin-bottom: 12px;
        border-radius: 999px;
        background: #DDE4FF;
        color: var(--primary-dark);
        font-size: 0.7rem;
        font-weight: 700;
    }

    .prt-email-lead { font-weight: 600; color: var(--text-dark); }

    .prt-email-rows {
        width: 100%;
        margin: 4px 0 14px;
        border: 1px solid var(--border-medium);
        border-radius: 10px;
        background: var(--bg-light);
        border-collapse: separate;
        border-spacing: 0;
        overflow: hidden;
    }

    .prt-email-rows td {
        padding: 7px 12px;
        font-size: 0.75rem;
        border-top: 1px solid #eef0f3;
    }

    .prt-email-rows tr:first-child td { border-top: 0; }
    .prt-email-rows td:first-child { color: var(--text-light); }
    .prt-email-rows td:last-child { text-align: right; font-weight: 500; color: var(--text-dark); }

    .prt-email-cta {
        display: block;
        padding: 11px;
        border-radius: 10px;
        background: var(--primary);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 600;
        text-align: center;
    }

    .prt-email-note { margin-top: 10px !important; font-size: 0.7rem; color: var(--text-muted); text-align: center; }

    /* ========================================
       COMPARISON TABLE
    ======================================== */
    .prt-compare {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border-medium);
    }
    .prt-compare-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .prt-compare-header-left {
        padding: 16px 24px;
        background: #fef2f2;
        font-size: 0.9rem;
        font-weight: 700;
        color: #dc2626;
        text-align: center;
    }
    .prt-compare-header-right {
        padding: 16px 24px;
        background: var(--green-light);
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--green);
        text-align: center;
    }
    .prt-compare-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid var(--border-light);
    }
    .prt-compare-cell {
        padding: 16px 24px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .prt-compare-cell svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
    .prt-compare-cell-before {
        background: #fffbfb;
        color: var(--text-light);
    }
    .prt-compare-cell-before svg { color: #ef4444; }
    .prt-compare-cell-after {
        background: #fafffe;
        color: var(--text-medium);
    }
    .prt-compare-cell-after svg { color: #22c55e; }

    /* ========================================
       TESTIMONIALS
    ======================================== */
    .prt-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .prt-testimonial-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
    }
    .prt-testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    .prt-testimonial-quote {
        font-size: 2rem;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 12px;
    }
    .prt-testimonial-text {
        font-size: 0.9rem;
        color: var(--text-medium);
        line-height: 1.7;
        margin-bottom: 20px;
        font-style: italic;
    }
    .prt-testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .prt-testimonial-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 0.75rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    .prt-testimonial-name {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
    }
    .prt-testimonial-role {
        font-size: 0.75rem;
        color: var(--text-light);
    }
    .prt-testimonial-stars {
        display: flex;
        gap: 2px;
        margin-top: 3px;
    }
    .prt-testimonial-stars svg { width: 12px; height: 12px; color: #f59e0b; fill: #f59e0b; }

    /* ========================================
       PRICING PREVIEW
    ======================================== */
    .prt-pricing-preview {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
        margin: 0 auto 32px;
    }
    .prt-pricing-mini {
        background: #ffffff;
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        border: 2px solid var(--border-light);
        transition: all 0.3s ease;
    }
    .prt-pricing-mini.featured {
        border-color: var(--primary);
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
        position: relative;
    }
    .prt-pricing-mini.featured::before {
        content: 'Najpopularniji';
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 3px 14px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #ffffff;
        font-size: 0.7rem;
        font-weight: 600;
        border-radius: 20px;
        white-space: nowrap;
    }
    .prt-pricing-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .prt-pricing-mini-name {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 4px;
    }
    .prt-pricing-mini-price {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 4px;
    }
    .prt-pricing-mini-period {
        font-size: 0.75rem;
        color: var(--text-light);
    }

    /* ========================================
       DESIGN IMPROVEMENTS
    ======================================== */

    /* Pain card colored top borders */
    .prt-pain-card:nth-child(1) { border-top: 3px solid #ef4444; }
    .prt-pain-card:nth-child(2) { border-top: 3px solid #f59e0b; }
    .prt-pain-card:nth-child(3) { border-top: 3px solid var(--primary); }
    .prt-pain-card:nth-child(4) { border-top: 3px solid #06b6d4; }

    /* Mockup decorative glow behind */
    .prt-showcase-mockup {
        position: relative;
    }
    .prt-showcase-mockup::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
        z-index: -1;
        pointer-events: none;
    }
    .prt-showcase-reverse .prt-showcase-mockup::before {
        background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
    }

    /* Colored showcase badges */
    .prt-showcase-badge-green { background: var(--green-light); color: var(--green); }
    .prt-showcase-badge-cyan { background: #ecfeff; color: #0891b2; }
    .prt-showcase-badge-amber { background: #fef3c7; color: #d97706; }
    .prt-showcase-badge-rose { background: #fff1f2; color: #e11d48; }
    .prt-showcase-badge-teal { background: #f0fdfa; color: #0d9488; }

    /* FAQ active accent */
    .faq-item:has(.faq-question.open) {
        border-left: 3px solid var(--primary);
        padding-left: 17px;
    }

    /* Pricing mini features */
    .prt-pricing-mini-features {
        list-style: none;
        padding: 0;
        margin: 12px 0 0;
    }
    .prt-pricing-mini-features li {
        font-size: 0.75rem;
        color: var(--text-light);
        padding: 3px 0;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: center;
    }
    .prt-pricing-mini-features svg {
        width: 12px;
        height: 12px;
        color: var(--green);
        flex-shrink: 0;
    }

    /* ========================================
       RESPONSIVE
    ======================================== */
    @media (max-width: 1024px) {
        .prt-hero-title { font-size: 2.75rem; }
        .prt-showcase { gap: 36px; }
        .prt-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
        .prt-hero-title { font-size: 2.25rem; }
        .prt-hero-subtitle { font-size: 1rem; }
        .prt-pain-grid { grid-template-columns: 1fr; }
        .prt-showcase, .prt-showcase-reverse { flex-direction: column; gap: 32px; }
        .prt-showcase-mockup { width: 100%; }
        .prt-testimonials-grid { grid-template-columns: 1fr; }
        .prt-pricing-preview { grid-template-columns: 1fr; max-width: 360px; }
        .prt-compare-header, .prt-compare-row { grid-template-columns: 1fr; }
        .prt-compare-cell { padding: 12px 20px; }
    }
    @media (max-width: 480px) {
        .prt-hero-title { font-size: 1.875rem; }
        .prt-hero-buttons { flex-direction: column; align-items: center; }
        .prt-compare-cell { font-size: 0.8rem; padding: 10px 16px; }
        .prt-phone { width: 268px; }
    }

    /* ========================================
       Prikazi panela (stranica za biznise)
       ----------------------------------------
       Ranije su ovi prikazi bili slobodna interpretacija: kalendar sa satima u
       redovima, osoblje kao kartice sa smjenama, kolone kojih u panelu nema.
       Sada prate stvarne ekrane: bocna traka sa istim grupama i stavkama,
       mjesecni kalendar sa cipovima, tabele sa istim zaglavljima. Vrijednosti
       u njima su izmisljene, raspored nije.
    ======================================== */
    .pm-window {
        display: flex;
        min-height: 300px;
        background: #f5f7fb;
        font-size: 0.62rem;
        color: var(--text-dark);
        text-align: left;
    }

    .pm-side {
        width: 132px;
        flex-shrink: 0;
        background: #fff;
        border-right: 1px solid var(--border-medium);
        padding: 10px 8px;
    }

    .pm-side-brand {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0 4px 9px;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.62rem;
        font-weight: 700;
    }

    .pm-side-brand::before {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2.5px solid var(--primary);
        border-right-color: transparent;
    }

    .pm-side-label {
        padding: 8px 6px 3px;
        font-size: 0.5rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .pm-side-item {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 6px;
        border-radius: 6px;
        color: var(--text-medium);
    }

    .pm-side-item svg { width: 11px; height: 11px; color: var(--text-muted); }

    .pm-side-item.is-active {
        background: var(--primary-light);
        color: var(--primary-dark);
        font-weight: 600;
    }

    .pm-side-item.is-active svg { color: var(--primary); }

    .pm-main {
        flex: 1;
        min-width: 0;
        padding: 12px 14px 16px;
    }

    .pm-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
    }

    .pm-title { font-size: 0.82rem; font-weight: 700; letter-spacing: -0.01em; }
    .pm-sub { margin-top: 1px; font-size: 0.55rem; color: var(--text-light); }

    .pm-btn {
        padding: 4px 9px;
        border-radius: 6px;
        background: var(--primary);
        color: #fff;
        font-size: 0.55rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .pm-btn--ghost {
        background: #fff;
        color: var(--text-medium);
        border: 1px solid var(--border-medium);
    }

    .pm-row { display: flex; align-items: center; gap: 6px; }

    .pm-card {
        background: #fff;
        border: 1px solid var(--border-medium);
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .pm-card:last-child { margin-bottom: 0; }
    .pm-card-title { font-size: 0.6rem; font-weight: 700; margin-bottom: 8px; }

    /* ---- Statistika ---- */
    .pm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 10px; }

    .pm-stat {
        background: #fff;
        border: 1px solid var(--border-medium);
        border-radius: 10px;
        box-shadow: 0 1px 2px rgba(17, 24, 39, 0.05);
        padding: 8px 10px;
    }

    .pm-stat-value { font-size: 0.85rem; font-weight: 600; letter-spacing: -0.01em; }
    .pm-stat-value.is-accent { color: var(--primary-dark); }
    .pm-stat-value.is-ok { color: #16a34a; }
    .pm-stat-label { margin-top: 1px; font-size: 0.5rem; color: var(--text-light); }

    /* ---- Kalendar: mjesecni prikaz, kao u panelu ---- */
    .pm-cal-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 8px;
    }

    .pm-seg { display: flex; border: 1px solid var(--border-medium); border-radius: 6px; overflow: hidden; background: #fff; }
    .pm-seg span { padding: 3px 8px; font-size: 0.55rem; color: var(--text-light); }
    .pm-seg span.is-active { background: var(--primary); color: #fff; font-weight: 600; }

    .pm-cal-head, .pm-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
    .pm-cal-head { margin-bottom: 3px; }

    .pm-cal-head span {
        text-align: center;
        font-size: 0.5rem;
        font-weight: 600;
        color: var(--text-light);
    }

    .pm-cal-day {
        min-height: 44px;
        padding: 3px;
        border: 1px solid var(--border-light);
        border-radius: 5px;
        background: #fafbfd;
    }

    .pm-cal-day.is-today { border-color: var(--primary-200); background: var(--primary-light); }
    .pm-cal-day.is-out { opacity: 0.45; }
    .pm-cal-num { font-size: 0.5rem; font-weight: 600; color: var(--text-light); margin-bottom: 2px; }

    .pm-chip {
        display: block;
        padding: 1px 4px;
        margin-bottom: 2px;
        border-radius: 4px;
        font-size: 0.46rem;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Iste boje statusa kao u panelu */
    .pm-chip--pending { background: #fef3c7; color: #92400e; }
    .pm-chip--confirmed { background: #dcfce7; color: #166534; }
    .pm-chip--done { background: #e2e8f0; color: #334155; }
    .pm-chip--off { background: #fee2e2; color: #991b1b; }

    .pm-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; font-size: 0.5rem; color: var(--text-light); }
    .pm-legend i { display: inline-block; width: 7px; height: 7px; border-radius: 2px; margin-right: 3px; }

    /* ---- Tabela ---- */
    .pm-table { width: 100%; border-collapse: collapse; }
    .pm-table th {
        text-align: left;
        padding: 5px 8px;
        font-size: 0.5rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-muted);
        border-bottom: 1px solid var(--border-medium);
    }
    .pm-table td {
        padding: 6px 8px;
        font-size: 0.55rem;
        border-bottom: 1px solid var(--border-light);
        vertical-align: middle;
    }
    .pm-table tr:last-child td { border-bottom: 0; }

    .pm-person { display: flex; align-items: center; gap: 6px; }
    .pm-avatar {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-light);
        color: var(--primary-dark);
        font-size: 0.5rem;
        font-weight: 700;
        flex-shrink: 0;
    }
    .pm-person-sub { font-size: 0.48rem; color: var(--text-muted); }

    .pm-badge {
        display: inline-block;
        padding: 1px 6px;
        border-radius: 50px;
        font-size: 0.48rem;
        font-weight: 600;
        background: #dcfce7;
        color: #166534;
    }
    .pm-badge--neutral { background: var(--border-light); color: var(--text-medium); }
    .pm-badge--info { background: var(--primary-100); color: var(--primary-deeper); }

    .pm-tag {
        display: inline-block;
        padding: 1px 5px;
        margin: 0 2px 2px 0;
        border-radius: 4px;
        background: var(--bg-light);
        border: 1px solid var(--border-light);
        font-size: 0.46rem;
        color: var(--text-medium);
    }

    /* ---- Trake i toplotna mapa ---- */
    .pm-bar-row { display: grid; grid-template-columns: 46px 1fr 26px; align-items: center; gap: 6px; margin-bottom: 5px; font-size: 0.5rem; color: var(--text-light); }
    .pm-bar-track { height: 6px; border-radius: 99px; background: var(--border-light); overflow: hidden; }
    .pm-bar-fill { height: 100%; border-radius: 99px; background: var(--primary); }
    .pm-bar-value { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--text-medium); }

    .pm-heat { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; }
    .pm-heat i { height: 12px; border-radius: 2px; background: rgba(27, 63, 209, var(--h, .1)); }

    @media (max-width: 640px) {
        .pm-side { display: none; }
        .pm-window { font-size: 0.6rem; }
        .pm-stats { grid-template-columns: repeat(2, 1fr); }
    }

    /* Kartica paketa: oznaka, probni period i stavka koju paket nema */
    .pricing-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 14px;
        border-radius: 50px;
        background: var(--primary);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .pricing-trial {
        margin: 6px 0 0;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--green);
    }

    .pricing-feature.is-missing { color: var(--text-muted); }

    /* Kartica paketa: granice kao brojevi, mogucnosti kao kvacice. Svaka
       kartica ima iste redove istim redom, da se mogu porediti niz kolonu. */
    .pricing-cta { width: 100%; justify-content: center; margin-top: 20px; }

    .pricing-ask {
        display: block;
        width: 100%;
        margin: 10px 0 0;
        padding: 0;
        border: 0;
        background: none;
        font: inherit;
        font-size: 0.85rem;
        color: var(--text-light);
        text-decoration: underline;
        text-underline-offset: 3px;
        cursor: pointer;
    }

    .pricing-ask:hover { color: var(--primary); }

    .pricing-block {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid var(--border-light);
    }

    .pricing-block-title {
        display: block;
        margin-bottom: 12px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .pricing-limits { display: grid; gap: 8px; }

    .pricing-limits > div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 12px;
        font-size: 0.9rem;
    }

    .pricing-limits dt { color: var(--text-light); }
    .pricing-limits dd { margin: 0; font-weight: 700; color: var(--text-dark); font-variant-numeric: tabular-nums; }
