/* ARNI soft - stranica firme. Bez frameworka: HTML + ovaj CSS + malo JS-a. */

:root {
  --ink: #0e1733;
  --ink-2: #34405c;
  --muted: #5f6b85;
  --line: #e1e6f0;
  --paper: #ffffff;
  --ground: #f4f6fb;
  --tint: #edf2fa;
  --blue: #3263ba;          /* primarna plava iz logotipa */
  --blue-2: #5b86c4;        /* sekundarna plava iz logotipa */
  --blue-deep: #24498c;
  --night: #0c1733;
  --night-2: #132246;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 23, 51, .06), 0 8px 24px rgba(14, 23, 51, .06);
  --display: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--blue-deep); }
:focus-visible { outline: 3px solid var(--blue-2); outline-offset: 3px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; margin: 0; text-wrap: balance; letter-spacing: -.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 12px; }

/* Oznaka iznad naslova */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }

/* Dugmad */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 1.5px solid transparent; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(50, 99, 186, .75); }
.btn-primary:hover { background: var(--blue-deep); color: #fff; }
.btn-outline { border-color: #c8d4ea; color: var(--ink); background: rgba(255, 255, 255, .6); }
.btn-outline:hover { border-color: var(--blue-2); color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--blue-deep); color: #fff; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Zaglavlje */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .2s ease, box-shadow .2s ease; }
.site-header.scrolled, .site-header.nav-open { background: rgba(255, 255, 255, .9); backdrop-filter: saturate(160%) blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 30px; margin-left: auto; list-style: none; padding: 0; margin-block: 0; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: .96rem; white-space: nowrap; }
.nav-links a:hover { color: var(--blue); }
.nav .btn { padding: 10px 18px; font-size: .92rem; }
.menu-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 26px; height: 26px; }

/* Izbor jezika */
.lang { position: relative; }
.lang summary { list-style: none; display: flex; align-items: center; gap: 6px; cursor: pointer; padding: 8px 10px; border-radius: 10px; font-weight: 600; font-size: .9rem; color: var(--ink-2); }
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { background: var(--tint); color: var(--blue); }
.lang summary svg { width: 16px; height: 16px; }
.lang summary .chev { width: 12px; height: 12px; transition: transform .15s ease; }
.lang[open] summary .chev { transform: rotate(180deg); }
.lang ul { position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px; list-style: none; margin: 0; padding: 6px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 18px 40px -16px rgba(14, 23, 51, .3); }
.lang a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: .95rem; }
.lang a:hover { background: var(--tint); }
.lang a[aria-current] { color: var(--blue); font-weight: 600; }
.lang a[aria-current]::after { content: "✓"; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav { gap: 8px; }
  .nav .btn { display: none; }
  .lang { margin-left: auto; }
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px 20px 20px; background: var(--paper); box-shadow: 0 12px 24px -12px rgba(14, 23, 51, .2); }
  .nav-open .nav-links { display: flex; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
}

/* Hero: tipografija i ilustracija, bez slika proizvoda (one su u portfoliju) */
.hero { position: relative; overflow: hidden; padding: 168px 0 0; background:
  radial-gradient(900px 520px at 88% 18%, rgba(91, 134, 196, .22), transparent 62%),
  radial-gradient(700px 420px at 0% 0%, rgba(50, 99, 186, .10), transparent 60%),
  linear-gradient(#f7f9fd, #fff 80%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(50, 99, 186, .16) 1px, transparent 1.4px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(#000 20%, transparent 85%); mask-image: linear-gradient(#000 20%, transparent 85%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: .88rem; font-weight: 500; color: var(--ink-2); }
.hero-pill .ms { display: grid; grid-template-columns: 7px 7px; gap: 1.5px; }
.hero-pill .ms i { width: 7px; height: 7px; }
.hero h1 { margin-top: 28px; font-size: clamp(3rem, 7.4vw, 6rem); font-weight: 800; line-height: .98; letter-spacing: -.045em; color: var(--ink); }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, var(--blue) 10%, var(--blue-2) 90%); -webkit-background-clip: text; background-clip: text; color: transparent; padding-right: .04em; }
.hero-lead { margin-top: 28px; font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 620px; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Ilustracija desno: kod + kartice koje pokazuju put od ideje do objave. Sve je HTML/CSS. */
.hero-visual { position: relative; min-width: 0; padding: 34px 0 0 30px; }
.hero-visual::before { content: ""; position: absolute; inset: -10% -20% -5% 0; background: radial-gradient(closest-side, rgba(91, 134, 196, .30), transparent); filter: blur(12px); }
.code { position: relative; background: var(--night); border-radius: 18px; box-shadow: 0 40px 80px -30px rgba(14, 23, 51, .55), 0 0 0 1px rgba(255, 255, 255, .06) inset; overflow: hidden; }
.code-bar { display: flex; align-items: center; gap: 7px; padding: 14px 16px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.code-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a3658; }
.code-bar span { margin-left: 12px; font: 500 12px/1 var(--body); color: #9db8e2; background: rgba(255, 255, 255, .06); padding: 6px 10px; border-radius: 6px; }
.code pre { margin: 0; padding: 22px 24px 96px; font: 500 14.5px/1.75 ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace; color: #d6e0f5; overflow: hidden; white-space: pre; }
.code .ln { display: inline-block; width: 22px; color: #3f4d75; user-select: none; }
.code .k { color: #8fb0e8; }
.code .f { color: #7fd1c7; }
.code .s { color: #f3c98b; }
.code .p { color: #9aa7c7; }
.code .c { color: #56648a; font-style: italic; }
.code .ok { color: #7ee2a8; }
.caret { display: inline-block; width: 8px; height: 1.1em; vertical-align: -3px; margin-left: 2px; background: var(--blue-2); }

.float { position: absolute; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 48px -20px rgba(14, 23, 51, .35); font-size: .88rem; color: var(--ink-2); }
.float-ci { top: 0; right: -14px; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; }
.float-ci .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: #e5f6ed; color: #1e8a5a; }
.float-ci .dot svg { width: 18px; height: 18px; }
.float-ci b { display: block; color: var(--ink); font-weight: 600; line-height: 1.3; }
.float-ci small { color: var(--muted); font-size: .8rem; }
.float-steps { left: 0; bottom: -34px; padding: 16px 18px; width: min(360px, 88%); }
.float-steps b { display: block; font-family: var(--display); color: var(--ink); font-size: .95rem; margin-bottom: 12px; }
.float-steps ol { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; position: relative; }
.float-steps ol::before { content: ""; position: absolute; top: 7px; left: 8px; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue) 66%, var(--line) 66%); }
.float-steps li { position: relative; padding-top: 24px; font-size: .74rem; color: var(--muted); }
.float-steps li::before { content: ""; position: absolute; top: 0; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px #fff; }
.float-steps li.now::before { background: #fff; border: 3px solid var(--blue); box-sizing: border-box; }
.float-steps li.next::before { background: var(--line); }
.float-steps li.now { color: var(--blue); font-weight: 600; }

@media (prefers-reduced-motion: no-preference) {
  .caret { animation: blink 1.1s steps(1) infinite; }
  .float-ci { animation: bob 6s ease-in-out infinite; }
  .float-steps { animation: bob 7s ease-in-out infinite 1s; }
  .float-steps li.now::before { animation: pulse 1.8s ease-out infinite; }
  @keyframes blink { 50% { opacity: 0; } }
  @keyframes bob { 50% { transform: translateY(-8px); } }
  @keyframes pulse { 0% { box-shadow: 0 0 0 3px #fff, 0 0 0 3px rgba(50, 99, 186, .45); } 100% { box-shadow: 0 0 0 3px #fff, 0 0 0 12px rgba(50, 99, 186, 0); } }
}

/* Traka s uslugama ispod hero-a */
.ticker { position: relative; margin-top: 110px; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .7); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; width: max-content; }
.ticker ul { display: flex; list-style: none; margin: 0; padding: 22px 0; }
.ticker li { display: flex; align-items: center; font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--ink-2); white-space: nowrap; letter-spacing: -.01em; }
.ticker li::after { content: ""; width: 8px; height: 8px; margin-inline: 34px; border-radius: 2px; background: var(--blue-2); transform: rotate(45deg); }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: ticker 38s linear infinite; }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  @keyframes ticker { to { transform: translateX(-50%); } }
}

@media (max-width: 900px) {
  .hero { padding-top: 124px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin-top: 8px; }
  .ticker { margin-top: 64px; }
}
@media (max-width: 560px) {
  .hero-visual { padding: 26px 0 0; }
  .code pre { font-size: 12.5px; padding: 18px 16px 92px; }
  .float-ci { right: 0; }
}

/* Sekcije */
.section { padding: 110px 0; }
.section.alt { background: var(--ground); }
@media (max-width: 720px) { .section { padding: 76px 0; } .section-head { margin-bottom: 40px; } }

/* Okvir preglednika oko slika ekrana */
.shot { position: relative; margin: 0; overflow: hidden; background: #fff; }
.shot::before { content: ""; display: block; height: 22px; background: #eef1f7 radial-gradient(circle at 12px 11px, #ff6159 3.5px, transparent 4px) no-repeat, #eef1f7; }
.shot::after { content: ""; position: absolute; top: 0; left: 0; height: 22px; width: 60px; background: radial-gradient(circle at 26px 11px, #ffbd2e 3.5px, transparent 4px), radial-gradient(circle at 40px 11px, #28c941 3.5px, transparent 4px); }

/* Portfolio */
.work { display: grid; gap: 34px; }
.case { display: grid; grid-template-columns: 1.08fr 1fr; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); }
.case:nth-child(even) { grid-template-columns: 1fr 1.08fr; }
.case:nth-child(even) .case-visual { order: 2; }
.case-visual { position: relative; min-width: 0; min-height: 340px; padding: 44px 0 0 44px; background: var(--accent-soft, var(--tint)); display: flex; overflow: hidden; }
.case-visual .shot { flex: 1; display: flex; flex-direction: column; border-radius: 12px 0 0 0; box-shadow: 0 30px 60px -30px rgba(14, 23, 51, .45); border: 1px solid rgba(14, 23, 51, .08); }
/* Slika ekrana popunjava prostor pored teksta; vidi se gornji dio stranice. */
.case-visual .shot img { flex: 1; min-height: 0; width: 100%; height: 100%; object-fit: cover; object-position: left top; }
.case-visual .mock { flex: 1; }
.case-body { min-width: 0; padding: 48px 48px 44px; display: flex; flex-direction: column; }
.case-tag { align-self: flex-start; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent, var(--blue)); background: var(--accent-soft, var(--tint)); padding: 5px 12px; border-radius: 999px; }
.case h3 { margin-top: 18px; font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -.025em; }
.case h3 span { display: block; margin-top: 6px; font-family: var(--body); font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.case p { margin-top: 16px; color: var(--ink-2); }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .32em; width: 18px; height: 18px; border-radius: 50%; background: var(--accent, var(--blue)) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3L15 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.case-foot { margin-top: auto; padding-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.case-users { font-size: .9rem; color: var(--muted); }
.case-users b { color: var(--ink-2); font-weight: 600; }
.case-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--display); color: var(--accent, var(--blue)); text-decoration: none; }
.case-link:hover { color: var(--ink); }
.case-link svg { width: 16px; height: 16px; }

.case-toni { --accent: #0b7f9c; --accent-soft: #e2f5f9; }
.case-ejp { --accent: #2456d6; --accent-soft: #e8eefc; }
.case-bmp { --accent: #3263ba; --accent-soft: #fff5cc; }
.case-kona { --accent: #16825d; --accent-soft: #e3f4ec; }
.case-gvu { --accent: #1b7fd6; --accent-soft: #e2f0fc; }

@media (max-width: 960px) {
  .case, .case:nth-child(even) { grid-template-columns: 1fr; }
  .case:nth-child(even) .case-visual { order: 0; }
  .case-visual { padding: 32px 0 0 32px; }
  .case-body { padding: 32px 26px 30px; }
}

/* KONA nema javnu stranicu - ilustracija umjesto slike ekrana */
.mock { background: #fff; font-size: 12px; line-height: 1.4; color: var(--ink-2); }
.mock-top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mock-top b { font-family: var(--display); color: var(--ink); font-size: 14px; }
.mock-top i { margin-left: auto; font-style: normal; background: #e3f4ec; color: #16825d; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px 18px 6px; }
.mock-kpis div { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.mock-kpis span { display: block; color: var(--muted); font-size: 11px; }
.mock-kpis strong { font-family: var(--display); font-size: 17px; color: var(--ink); }
.mock-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; padding: 12px 18px 0; }
.mock-bars span { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(#35b288, #16825d); opacity: .85; }
.mock-rows { padding: 10px 18px 18px; }
.mock-rows div { display: grid; grid-template-columns: 1.6fr 1fr .8fr; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.mock-rows div:first-child { border-top: 0; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.mock-rows em { font-style: normal; justify-self: start; padding: 1px 8px; border-radius: 999px; background: #e3f4ec; color: #16825d; font-weight: 600; font-size: 11px; }
.mock-rows em.due { background: #fff1e0; color: #b25d00; }
.mock-line { display: block; height: 8px; border-radius: 4px; background: #e8ecf4; }

/* Usluge */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.service:hover { border-color: #c8d4ea; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.service .ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--tint); color: var(--blue); }
.service .ico svg { width: 24px; height: 24px; }
.service h3 { margin-top: 20px; }
.service p { margin-top: 10px; color: var(--muted); font-size: .98rem; }
@media (max-width: 960px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .services { grid-template-columns: 1fr; } }

/* Kako radimo */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding-top: 58px; }
.steps li::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--blue); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid #c8d4ea; background: var(--paper); z-index: 1; }
.steps li::after { content: ""; position: absolute; top: 21px; left: 50px; right: -14px; height: 1.5px; background: repeating-linear-gradient(90deg, #c8d4ea 0 6px, transparent 6px 12px); }
.steps li:last-child::after { display: none; }
.steps p { margin-top: 10px; color: var(--muted); font-size: .98rem; }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 22px; }
  .steps li:nth-child(2)::after { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .steps li::after { display: none; } }

/* Zašto mi - tamna traka */
.why { background: var(--night); color: #fff; position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 100% 0%, rgba(91, 134, 196, .22), transparent 60%); }
.why .wrap { position: relative; }
.why .eyebrow { color: #9db8e2; }
.why h2 { color: #fff; }
.why .section-head p { color: rgba(255, 255, 255, .68); }
.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; overflow: hidden; }
.why-grid div { background: var(--night-2); padding: 30px 26px; }
.why-grid h3 { color: #fff; font-size: 1.08rem; }
.why-grid p { margin-top: 10px; color: rgba(255, 255, 255, .64); font-size: .96rem; }
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* Kontakt */
.contact { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact h2 { margin-top: 14px; }
.contact-lead { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }
.contact .btn { margin-top: 30px; }
.contact-card { background: var(--ground); border: 1px solid var(--line); border-radius: 20px; padding: 10px 30px; }
.contact-card dl { margin: 0; }
.contact-card div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-card div:first-child { border-top: 0; }
.contact-card dt { color: var(--muted); font-size: .9rem; padding-top: 1px; }
.contact-card dd { margin: 0; font-weight: 500; }
.contact-card dd a { color: var(--ink); text-decoration: none; }
.contact-card dd a:hover { color: var(--blue); }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 480px) { .contact-card { padding: 6px 20px; } .contact-card div { grid-template-columns: 1fr; gap: 4px; } }

/* Podnožje */
.site-footer { background: var(--night); color: rgba(255, 255, 255, .6); font-size: .94rem; padding: 64px 0 36px; }
.footer-top { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 28px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-top p { margin-top: 14px; max-width: 440px; }
.footer-top address { font-style: normal; margin-top: 10px; }
.map-link { text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .25); text-underline-offset: 4px; }
.map-link svg { display: inline-block; width: 15px; height: 15px; margin-right: 5px; vertical-align: -2px; }
.map-link:hover { text-decoration-color: currentColor; }
.footer-products { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; margin: 6px 0 0; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; }
.footer-bottom .ms { width: 170px; opacity: .85; }
.social { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); }
.social a:hover { background: rgba(255, 255, 255, .08); }
.social svg { width: 17px; height: 17px; fill: currentColor; }
/* Iste ikonice u kontakt kartici, na svijetloj pozadini */
.social-light a { border-color: var(--line); background: var(--paper); color: var(--ink-2); }
.social-light a:hover { background: var(--tint); border-color: #c8d4ea; color: var(--blue); }
.site-footer .social-light a, .contact-card .social-light a { color: var(--ink-2); }
.contact-card .social-light a:hover { color: var(--blue); }

/* 404 */
.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 40px 20px; background: linear-gradient(#f7f9fd, #fff); }
.notfound h1 { font-size: clamp(2rem, 5vw, 3rem); }
.notfound p { margin: 16px 0 30px; color: var(--muted); }
.notfound .alt-lang { margin-top: 36px; font-size: .95rem; color: var(--muted); }
