:root {
    --blue: #149CE2;
    --dark: #0A0A0A;
    --light: #F9F9F9;
    --gray: #161616;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: #fff; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.highlight { color: var(--blue); }
.text-white { color: #fff; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }

/* TOP BAR */
.top-bar { background: var(--blue); padding: 8px 0; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-bar-contact a { color: #fff; text-decoration: none; font-size: 0.85rem; margin-right: 15px; display: inline-flex; align-items: center; }
.contact-icon { height: 16px; margin-right: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-flags { display: flex; align-items: center; }
.top-bar-flags img { height: 14px; margin-left: 8px; }
.top-bar-partners { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
.topbar-partner-btn { font-size: 0.78rem; font-weight: 700; color: #fff; text-decoration: none; padding: 4px 12px; border-radius: 6px; white-space: nowrap; transition: opacity 0.2s; }
.topbar-partner-btn:hover { opacity: 0.82; }
.topbar-btn-dark { background: #000; border: 1px solid rgba(255,255,255,0.15); }
.footer-partner-link { color: #888 !important; }
.footer-partner-link:hover { color: var(--blue) !important; }

/* HEADER */
header { background: rgba(0,0,0,0.95); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #222; }
nav { display: flex; justify-content: space-between; align-items: center; }
.main-logo { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; margin-left: 25px; font-weight: 500; }
.active-link { color: var(--blue); font-weight: 700; }
.footer-legal { font-size: 0.75rem; color: #3a3a3a; line-height: 1.7; margin-top: 14px; }

/* HERO SLIDER - NASLOVNICA */
.hero-section { height: 75vh; min-height: 500px; position: relative; overflow: hidden; }
.hero-slider { height: 100%; width: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: 1s ease; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; position: absolute; z-index: -2; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: -1; }
.hero-text { position: relative; z-index: 10; text-align: center; max-width: 800px; }
.hero-text h1, .hero-text .hero-h2 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.02em; }
.hero-text p { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 30px; opacity: 0.9; }

/* SEKCIJE */
.light-section { background: var(--light); color: #1a1a1a; padding: 80px 0; }
.dark-section { background: #0d0d0d; padding: 80px 0; }
.p-dark { color: #333; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: 600; }
.tech-card { background: var(--gray); color: #fff; padding: 40px; border-radius: 20px; text-align: center; }

/* TABLICE - CJENIK */
.page-title-section { padding: 100px 0; border-bottom: 1px solid #222; }
.table-container { max-width: 800px; margin: 0 auto; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.data-table th, .data-table td { padding: 20px; text-align: left; border-bottom: 1px solid #eee; }
.data-table thead { background: var(--blue); color: #fff; }
.table-dark { background: var(--gray); color: #fff; border: 1px solid #333; }
.table-dark td { border-bottom: 1px solid #222; }
.table-dark thead { background: #1a1a1a; }
.row-highlight { background: rgba(20, 156, 226, 0.1); font-weight: bold; }

/* GUMBI */
.btn-main { background: var(--blue); color: #fff; padding: 16px 35px; text-decoration: none; border-radius: 6px; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-main:hover { transform: translateY(-3px); }

/* ANIMACIJE */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s; }
.reveal.active { opacity: 1; transform: translateY(0); }
.animate-float { animation: float 4s infinite ease-in-out; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* SECTION TITLES */
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; color: #fff; text-align: center; }
.section-title.dark { color: #1a1a1a; }
.section-subtitle { text-align: center; color: #aaa; font-size: 1.05rem; margin-bottom: 50px; }
.section-subtitle.dark { color: #555; }

/* BENEFITS GRID */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 16px; padding: 32px 28px; transition: border-color 0.3s, transform 0.3s; }
.benefit-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.benefit-icon { font-size: 2rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.benefit-card p { color: #aaa; font-size: 0.92rem; line-height: 1.65; }

/* STEPS GRID */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); z-index: 0; }
.step-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 32px 24px; text-align: center; position: relative; z-index: 1; transition: box-shadow 0.3s; }
.step-card:hover { box-shadow: 0 8px 32px rgba(20,156,226,0.15); }
.step-number { font-size: 2.5rem; font-weight: 900; color: var(--blue); opacity: 0.25; line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.step-card p { color: #555; font-size: 0.9rem; line-height: 1.6; }
.step-link { color: var(--blue); text-decoration: none; font-weight: 600; }
.steps-cta { text-align: center; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); padding: 14px 33px; text-decoration: none; border-radius: 6px; font-weight: bold; display: inline-block; transition: 0.3s; background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* FOOTER */
footer { background: #0d0d0d; border-top: 1px solid #1e1e1e; padding: 0; }
.footer-main { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
.footer-logo { height: 40px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; filter: brightness(0) invert(1); margin-left: 0; }
.footer-tagline { color: #666; font-size: 0.9rem; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: #1a1a1a; color: #fff; transition: background 0.2s, transform 0.2s; border: 1px solid #222; }
.footer-social a:hover { background: var(--blue); transform: translateY(-2px); border-color: var(--blue); }
.footer-contact h4, .footer-nav h4 { color: var(--blue); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-contact ul, .footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: #666; font-size: 0.9rem; }
.footer-contact li img { margin-top: 2px; flex-shrink: 0; opacity: 0.5; }
.footer-contact a, .footer-nav a { color: #888; text-decoration: none; transition: color 0.2s; font-size: 0.9rem; }
.footer-contact a:hover, .footer-nav a:hover { color: var(--blue); }
.footer-contact address { font-style: normal; color: #666; font-size: 0.9rem; line-height: 1.5; }
.footer-bottom { border-top: 1px solid #1e1e1e; padding: 20px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-content p { color: #444; font-size: 0.85rem; }
.footer-bottom-content nav { display: flex; gap: 20px; }
.footer-bottom-content nav a { color: #444; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-bottom-content nav a:hover { color: var(--blue); }

/* SLIDER CONTROLS */
.slider-controls { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slide-btn { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: 0.3s; }
.slide-btn.active { background: var(--blue); border-color: var(--blue); transform: scale(1.2); }

/* FAQ */
.faq-section { background: var(--dark); padding: 80px 0; }
.faq-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 40px; text-align: center; color: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
details { background: #161616; border: 1px solid #2a2a2a; border-radius: 12px; overflow: hidden; transition: 0.3s; }
details[open] { border-color: var(--blue); }
summary { padding: 22px 24px; font-weight: 700; font-size: 1.05rem; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--blue); font-weight: 300; transition: transform 0.3s; line-height: 1; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 24px 22px; color: #aaa; line-height: 1.7; font-size: 0.95rem; }

/* FOOTER */
footer { border-top: 1px solid #222; font-size: 0.9rem; color: #666; text-align: left; }
.footer-content { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.footer-content nav a { color: #555; text-decoration: none; transition: color 0.2s; }
.footer-content nav a:hover { color: var(--blue); }

/* NAV TOGGLE – hamburger gumb */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1000000;
    position: relative;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999999;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-links.open { opacity: 1; pointer-events: all; transform: translateY(0); }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a, .nav-dropdown-toggle {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        margin-left: 0 !important;
        padding: 10px 16px;
        display: block;
        width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
        word-break: keep-all;
        box-sizing: border-box;
    }
    .nav-links a::after { display: none; }
    .nav-dropdown { flex-direction: column; width: 100%; }
    .nav-dropdown-toggle { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 32px; }
    .hero-text h1, .hero-text .hero-h2 { font-size: 2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-bottom-content { flex-direction: column; gap: 12px; text-align: left; }
    .top-bar-partners { display: none; }
}
/* SVG IKONICE */
.top-bar-contact a svg { color: #fff; flex-shrink: 0; }
.footer-contact li svg { color: #555; flex-shrink: 0; margin-top: 2px; }
.sidebar-contact a svg { color: #555; flex-shrink: 0; }
.tech-card svg { display: block; margin: 0 auto 16px; }

/* SVG ikonice – benefit cards, contact cards */
.benefit-icon { color: var(--blue); margin-bottom: 16px; display: flex; align-items: center; }
.benefit-icon svg { stroke: var(--blue); }
.contact-card-icon svg { stroke: var(--blue); }
.sidebar-tip-icon svg { stroke: var(--blue); }
.upload-icon svg { stroke: #555; }
.check-list li { display: flex; align-items: center; gap: 10px; }
.check-list li svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   ANIMACIJE – GPU accelerated, bez utjecaja na SEO
   Koristi samo transform i opacity (ne width/height/top)
   ═══════════════════════════════════════════════════════ */

/* 1. HERO ZOOM – subtilni ken burns efekt na hero slici */
.hero-slide.active .hero-img {
    animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.0); }
}

/* 2. HERO TEXT – fade + slide up pri svakom slidu */
.hero-slide.active .hero-text {
    animation: heroTextIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 3. REVEAL – poboljšani smooth reveal (bio je skokovit) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 4. STAGGER – kartice ulaze s pomakom jedna za drugom */
.benefit-card:nth-child(1) { transition-delay: 0ms; }
.benefit-card:nth-child(2) { transition-delay: 80ms; }
.benefit-card:nth-child(3) { transition-delay: 160ms; }
.benefit-card:nth-child(4) { transition-delay: 240ms; }
.benefit-card:nth-child(5) { transition-delay: 320ms; }
.benefit-card:nth-child(6) { transition-delay: 400ms; }

.step-card:nth-child(1) { transition-delay: 0ms; }
.step-card:nth-child(2) { transition-delay: 100ms; }
.step-card:nth-child(3) { transition-delay: 200ms; }
.step-card:nth-child(4) { transition-delay: 300ms; }

/* Stagger aktivira tek kad parent .reveal dobije .active */
.reveal .benefit-card,
.reveal .step-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active .benefit-card,
.reveal.active .step-card {
    opacity: 1;
    transform: translateY(0);
}

/* 5. HOVER LIFT – kartice se lagano podižu na hover */
.benefit-card {
    transition: border-color 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20, 156, 226, 0.12);
}

.step-card {
    transition: box-shadow 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(20, 156, 226, 0.15);
}

/* 6. FAQ DETAILS – smooth open/close */
details summary {
    transition: background 0.2s;
}
details[open] summary {
    background: rgba(20, 156, 226, 0.04);
}

/* 7. NAV LINKS – underline slide efekt */
.nav-links a {
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

/* 8. BTN PULSE – gumb "Naruči odmah" dobiva suptilni pulse */
.btn-main {
    position: relative;
    overflow: hidden;
}
.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn-main:hover::before {
    transform: translateX(100%);
}

/* 9. FLOAT animacija – sporija i glađa */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* 10. POŠTIVANJE preferencija za reducirane animacije (pristupačnost) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-slide.active .hero-img { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   DROPDOWN NAVIGACIJA
   ═══════════════════════════════════════════════════════ */
.nav-dropdown { position: relative; list-style: none; display: flex; align-items: center; }

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: inherit;
    font-weight: 500;
    cursor: pointer;
    margin-left: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active-link::after { width: 100%; }
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active-link { color: #fff; }
.nav-dropdown-toggle.active-link { color: var(--blue); font-weight: 700; }

.dropdown-arrow {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    opacity: 0.6;
}
.nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.dropdown-menu {
    position: absolute;
    top: 100%;          /* odmah ispod – bez gapa */
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #141414;
    border: 1px solid #242424;
    border-radius: 14px;
    padding: 16px 8px 8px; /* gornji padding pokriva "nevidljivi most" */
    min-width: 210px;
    list-style: none;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
}
/* Nevidljivi most koji popunjava prostor između gumba i panela
   – miš prelazi po njemu i ne triggera mouseout na li elementu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;      /* seže 12px iznad panela */
    left: 0;
    right: 0;
    height: 12px;    /* isti iznos */
    background: transparent;
}
/* Arrow pointer – vizualni trokut */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 6px;
    background: #141414;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 8px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.dropdown-menu a svg { stroke: #555; transition: stroke 0.15s; flex-shrink: 0; }
.dropdown-menu a:hover { background: rgba(20,156,226,0.08); color: #fff; }
.dropdown-menu a:hover svg { stroke: var(--blue); }
.dropdown-menu a[aria-current="page"] { color: var(--blue); font-weight: 700; }
.dropdown-menu a[aria-current="page"] svg { stroke: var(--blue); }

/* Separator iza prvog linka (Svi cjenici) */
.dropdown-menu li:first-child { border-bottom: 1px solid #1e1e1e; margin-bottom: 4px; padding-bottom: 4px; }

/* Mobitel – dropdown kao vertikalni submeni */
@media (max-width: 900px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(20,156,226,0.06);
        border-radius: 12px;
        padding: 6px 8px;
        margin: 6px auto 0;
        width: 240px;
        left: auto;
        right: auto;
        opacity: 1;
        pointer-events: all;
        display: none;
        text-align: center;
    }
    .dropdown-menu::before, .dropdown-menu::after { display: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-dropdown-toggle {
        margin-left: 0;
        white-space: nowrap;
        overflow: visible;
    }
    .dropdown-menu li { text-align: center; }
    .dropdown-menu li:first-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .dropdown-menu a {
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #ccc;
        padding: 10px 14px;
        justify-content: center;
        text-align: center;
        border-radius: 8px;
        display: block;
    }
    .dropdown-menu a svg { display: none; }
    .dropdown-menu a:hover { background: rgba(20,156,226,0.12); color: #fff; }
}

/* ═══ MALI MOBITELI (480px i manje) ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1, .hero-text .hero-h2 { font-size: 1.7rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 24px; }
    .price-cards { flex-direction: column; }
    .price-card { width: 100%; }
    .btn-main, .btn-outline { width: 100%; text-align: center; justify-content: center; }
    .steps-cta { flex-direction: column; }
    .top-bar-contact { gap: 10px; }
    .top-bar-contact a span { display: none; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    .section-header { margin-bottom: 32px; }
    .kalk-grid { grid-template-columns: 1fr; }
    .kalk-result-grid { grid-template-columns: 1fr 1fr; }
    .calc-result-wrap { grid-template-columns: 1fr; }
    .error-inner { padding: 0 16px; }
}
