/* ==========================================================================
   LunaMedia — glavni stilovi
   Boje brenda preuzete iz logotipa: narandžasta → pink → ljubičasta → plava.
   ========================================================================== */

:root {
	--lm-black: #07060b;
	--lm-ink: #0e0c14;
	--lm-surface: #14111d;
	--lm-surface-2: #1b1726;
	--lm-line: rgba(255, 255, 255, .1);
	--lm-line-2: rgba(255, 255, 255, .22);
	--lm-text: #f5f3f8;
	--lm-soft: #cbc5d8;
	--lm-muted: #a9a3b8;
	--lm-paper: #f5f3f8;
	--lm-paper-ink: #07060b;
	--lm-paper-muted: #4a4458;

	--lm-orange: #fbac1a;
	--lm-pink: #e32d8a;
	--lm-pink-text: #ff5ba8;
	--lm-purple: #7b3a9c;
	--lm-blue: #2d449b;

	--lm-grad: linear-gradient(100deg, #fbac1a 0%, #f06b4f 28%, #e32d8a 55%, #9b4fd0 80%, #6b7cff 100%);
	--lm-grad-btn: linear-gradient(100deg, #c8207a 0%, #7b3a9c 60%, #2d449b 100%);
	--lm-conic: conic-gradient(from 0deg, #fbac1a, #e32d8a, #7b3a9c, #2d449b, #fbac1a);

	--lm-font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--lm-display: "Unbounded", "Manrope", ui-sans-serif, system-ui, sans-serif;

	--lm-r-sm: 14px;
	--lm-r: 24px;
	--lm-r-lg: 36px;
	--lm-gutter: clamp(20px, 4.4vw, 64px);
	--lm-max: 1440px;
	--lm-section: clamp(72px, 10vw, 136px);
	--lm-ease: cubic-bezier(.2, .7, .2, 1);
	--lm-header-h: 88px;
}

/* ---------- Osnova ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--lm-header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--lm-black);
	color: var(--lm-text);
	font-family: var(--lm-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
body.lm-menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--lm-pink); color: #fff; }
:focus-visible { outline: 2px solid var(--lm-orange); outline-offset: 3px; border-radius: 6px; }
.lm-main:focus { outline: none; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus { clip: auto; width: auto; height: auto; }
.lm-skip {
	position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 20px;
	background: var(--lm-text); color: var(--lm-black); border-radius: 999px; font-weight: 800; text-decoration: none;
	transition: top .2s;
}
.lm-skip:focus { top: 16px; }

.lm-container { width: 100%; max-width: var(--lm-max); margin-inline: auto; padding-inline: var(--lm-gutter); }
.lm-section { padding-block: var(--lm-section) 0; }
.lm-section:last-child { padding-bottom: var(--lm-section); }

/* ---------- Tipografija ---------- */
.lm-display {
	font-family: var(--lm-display);
	font-weight: 700;
	letter-spacing: -.03em;
	text-transform: uppercase;
	line-height: 1;
}
.lm-h2 { font-size: clamp(34px, 4.6vw, 64px); }
.lm-h3 { font-size: clamp(22px, 2.2vw, 30px); font-family: var(--lm-display); font-weight: 700; letter-spacing: -.02em; }
.lm-grad {
	background: var(--lm-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.lm-lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--lm-soft); max-width: 62ch; }
.lm-muted { color: var(--lm-muted); }
.lm-kicker { display: inline-block; font-size: 15px; font-weight: 800; color: var(--lm-pink-text); text-decoration: none; margin-bottom: 18px; }
.lm-strong-link { color: var(--lm-text); font-weight: 800; }
.lm-gold { color: var(--lm-orange); }
.lm-stars { color: var(--lm-orange); letter-spacing: 3px; display: block; }

/* ---------- Dugmad ---------- */
.lm-btn {
	--h: 54px;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: var(--h); padding: 0 26px;
	border-radius: 999px; border: 1px solid transparent;
	font-weight: 800; font-size: 16px; line-height: 1.2; text-decoration: none; white-space: nowrap;
	transition: transform .3s var(--lm-ease), box-shadow .3s var(--lm-ease), background-color .3s, color .3s, border-color .3s;
}
.lm-btn .lm-ico { transition: transform .3s var(--lm-ease); }
.lm-btn:hover { transform: translateY(-2px); }
.lm-btn:hover .lm-ico { transform: translateX(3px); }
.lm-btn--sm { --h: 48px; padding: 0 22px; font-size: 15px; }
.lm-btn--lg { --h: 62px; padding: 0 32px; font-size: 17px; }
.lm-btn--block { width: 100%; }
.lm-btn--primary { background: var(--lm-grad-btn); background-size: 160% 100%; background-position: 0 0; color: #fff; }
.lm-btn--primary:hover { background-position: 100% 0; box-shadow: 0 16px 40px -12px rgba(227, 45, 138, .6); }
.lm-btn--ghost { border-color: var(--lm-line-2); color: var(--lm-text); background: transparent; }
.lm-btn--ghost:hover { border-color: var(--lm-text); background: rgba(255, 255, 255, .06); }
.lm-btn--dark { background: var(--lm-black); color: #fff; }
.lm-btn--dark:hover { box-shadow: 0 16px 40px -14px rgba(7, 6, 11, .6); }

.lm-round {
	display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
	width: 56px; height: 56px; border-radius: 50%;
	border: 1px solid var(--lm-line-2); background: transparent; color: var(--lm-text);
	transition: transform .3s var(--lm-ease), background-color .3s;
}
.lm-round:hover { transform: scale(1.06); background: rgba(255, 255, 255, .08); }
.lm-round--fill { border: 0; background: var(--lm-grad-btn); color: #fff; }

/* ---------- Zaglavlje ---------- */
.lm-header {
	position: fixed; inset: 0 0 auto; z-index: 100;
	padding-top: env(safe-area-inset-top, 0);
	transition: background-color .35s, border-color .35s, backdrop-filter .35s;
	border-bottom: 1px solid transparent;
}
.lm-header.is-scrolled {
	background: rgba(7, 6, 11, .78);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	backdrop-filter: saturate(140%) blur(14px);
	border-bottom-color: var(--lm-line);
}
.admin-bar .lm-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .lm-header { top: 46px; } }
.lm-header__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	height: var(--lm-header-h); max-width: var(--lm-max); margin-inline: auto; padding-inline: var(--lm-gutter);
}
.lm-logo { display: inline-flex; flex-shrink: 0; }
.lm-logo__img { width: 62px; height: auto; transition: transform .5s var(--lm-ease); }
.lm-logo:hover .lm-logo__img { transform: rotate(-8deg) scale(1.04); }

.lm-nav__list {
	display: flex; gap: 4px; padding: 6px; list-style: none;
	border-radius: 999px; background: rgba(255, 255, 255, .05); border: 1px solid var(--lm-line);
}
.lm-nav__list a {
	display: inline-flex; align-items: center; height: 44px; padding: 0 20px; border-radius: 999px;
	font-size: 15px; font-weight: 700; color: var(--lm-soft); text-decoration: none;
	transition: background-color .25s, color .25s;
}
.lm-nav__list a:hover { color: var(--lm-text); background: rgba(255, 255, 255, .06); }
.lm-nav__list .current-menu-item > a,
.lm-nav__list .current_page_item > a,
.lm-nav__list .current-menu-ancestor > a { color: var(--lm-text); background: rgba(255, 255, 255, .12); }

.lm-header__actions { display: flex; align-items: center; gap: 18px; }
.lm-header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; text-decoration: none; }
.lm-header__phone .lm-ico { color: var(--lm-pink-text); }

.lm-burger {
	display: none; position: relative; width: 50px; height: 50px; border-radius: 50%;
	border: 1px solid var(--lm-line-2); background: transparent;
}
.lm-burger__line { position: absolute; left: 15px; height: 2px; border-radius: 2px; background: var(--lm-text); transition: transform .3s var(--lm-ease), width .3s; }
.lm-burger__line:nth-of-type(2) { top: 20px; width: 20px; }
.lm-burger__line:nth-of-type(3) { top: 28px; width: 13px; }
.lm-burger:hover .lm-burger__line:nth-of-type(3) { width: 20px; }

@media (max-width: 1180px) {
	.lm-nav, .lm-header__phone span { display: none; }
	.lm-burger { display: inline-block; }
}
@media (max-width: 640px) {
	:root { --lm-header-h: 74px; }
	.lm-header__cta, .lm-header__phone { display: none; }
	.lm-logo__img { width: 52px; }
}

/* ---------- Prekidač jezika ---------- */
.lm-lang { display: inline-flex; gap: 2px; padding: 4px; list-style: none; border-radius: 999px; border: 1px solid var(--lm-line-2); }
.lm-lang a { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 36px; padding: 0 10px; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-decoration: none; color: var(--lm-muted); transition: background-color .25s, color .25s; }
.lm-lang a:hover { color: var(--lm-text); }
.lm-lang a[aria-current] { background: var(--lm-text); color: var(--lm-black); }
.lm-lang--menu { align-self: flex-start; }
@media (max-width: 640px) { .lm-lang--header { display: none; } }

/* ---------- Mobilni meni (preko cijelog ekrana) ---------- */
.lm-menu {
	position: fixed; inset: 0; z-index: 200;
	display: flex; flex-direction: column;
	padding: env(safe-area-inset-top, 0) var(--lm-gutter) calc(24px + env(safe-area-inset-bottom, 0));
	background: var(--lm-black);
	overflow-y: auto; overscroll-behavior: contain;
	clip-path: circle(0 at calc(100% - 50px) 44px);
	transition: clip-path .7s var(--lm-ease), visibility 0s linear .7s;
	visibility: hidden;
}
.lm-menu[hidden] { display: flex; }
.lm-menu.is-open { clip-path: circle(150% at calc(100% - 50px) 44px); visibility: visible; transition: clip-path .7s var(--lm-ease); }
.lm-menu__orb { position: absolute; right: -120px; bottom: -110px; width: 380px; height: 380px; opacity: .5; pointer-events: none; }
.lm-menu__orb .lm-shape { width: 100%; height: 100%; animation: lm-tilt 12s ease-in-out infinite; }
.lm-menu__top { position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--lm-header-h); }
.lm-menu__close {
	display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px;
	border-radius: 50%; border: 0; background: var(--lm-text); color: var(--lm-black);
	transition: transform .4s var(--lm-ease);
}
.lm-menu__close:hover { transform: rotate(90deg); }
.lm-menu__body { position: relative; flex: 1; padding-top: 12px; }
.lm-menu__label { font-size: 14px; font-weight: 800; color: var(--lm-pink-text); margin-bottom: 6px; }
.lm-menu__services { list-style: none; }
.lm-menu__services a {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	min-height: 60px; border-bottom: 1px solid var(--lm-line);
	font-family: var(--lm-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.02em;
	font-size: clamp(22px, 6vw, 34px); text-decoration: none;
}
.lm-menu__services .lm-ico { color: var(--lm-pink-text); transition: transform .3s var(--lm-ease); }
.lm-menu__services a:hover .lm-ico { transform: rotate(45deg); }
.lm-menu__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin-top: 22px; }
.lm-menu__list a { display: flex; align-items: center; min-height: 48px; font-size: 19px; font-weight: 700; color: var(--lm-soft); text-decoration: none; }
.lm-menu__foot { position: relative; display: grid; gap: 14px; padding-top: 28px; }
.lm-menu__contact { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--lm-muted); }
.lm-menu__contact a { color: var(--lm-text); font-weight: 800; text-decoration: none; }
.lm-menu__services li, .lm-menu__list li, .lm-menu__foot { opacity: 0; transform: translateY(24px); }
.lm-menu.is-open .lm-menu__services li,
.lm-menu.is-open .lm-menu__list li,
.lm-menu.is-open .lm-menu__foot {
	opacity: 1; transform: none;
	transition: opacity .6s var(--lm-ease), transform .6s var(--lm-ease);
	transition-delay: calc(.18s + var(--i, 4) * .06s);
}

/* ---------- Pomoćni elementi ---------- */
.lm-pill {
	display: inline-flex; align-items: center; gap: 12px; padding: 9px 18px;
	border-radius: 999px; border: 1px solid var(--lm-line-2); background: rgba(255, 255, 255, .04);
	font-size: 14px; font-weight: 700; color: var(--lm-soft);
}
.lm-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--lm-pink); animation: lm-pulse 1.9s ease-out infinite; }
.lm-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.lm-tags li, .lm-tags a {
	display: inline-flex; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--lm-line-2);
	background: rgba(255, 255, 255, .04); font-size: 14px; font-weight: 700; color: var(--lm-soft); text-decoration: none;
}
.lm-tags li:has(a) { padding: 0; border: 0; background: none; }
.lm-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(36px, 5vw, 64px); flex-wrap: wrap; }
.lm-section__head--center { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.lm-section__aside { max-width: 380px; }

.lm-crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; font-size: 14px; font-weight: 600; color: var(--lm-muted); margin-bottom: 26px; }
.lm-crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .6; }
.lm-crumbs a { text-decoration: none; }
.lm-crumbs a:hover { color: var(--lm-text); }
.lm-crumbs [aria-current] { color: var(--lm-text); }

/* ---------- Oblik iz logotipa ---------- */
.lm-shape { display: block; width: 100%; height: 100%; overflow: visible; }

/* ---------- Hero početne ---------- */
.lm-hero { position: relative; padding-top: calc(var(--lm-header-h) + clamp(40px, 7vw, 90px)); overflow: hidden; isolation: isolate; }
.lm-hero__visual { position: absolute; z-index: -1; right: max(-40px, calc((100vw - var(--lm-max)) / 2 + 10px)); top: calc(var(--lm-header-h) + 20px); width: 640px; height: 640px; }
.lm-hero__glow { position: absolute; inset: -12%; border-radius: 50%; background: radial-gradient(closest-side, rgba(227, 45, 138, .3), rgba(45, 68, 155, .18) 55%, transparent); animation: lm-glow 7s ease-in-out infinite; }
.lm-hero__shape { position: absolute; right: -70px; top: 150px; width: 520px; height: 520px; opacity: .35; animation: lm-tilt 14s ease-in-out infinite; }
.lm-hero__logo { position: absolute; right: 10px; top: 10px; width: 150px; height: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55)); animation: lm-float 6s ease-in-out infinite; }

/* Prozor preglednika u kojem se "gradi" sajt */
.lm-browser { position: absolute; left: 20px; top: 120px; width: 520px; border-radius: 18px; overflow: hidden; background: #0f0d16; border: 1px solid var(--lm-line-2); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9); transform: perspective(1400px) rotateY(-10deg) rotateX(4deg); }
.lm-browser__bar { display: flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; background: #1b1726; border-bottom: 1px solid var(--lm-line); }
.lm-browser__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a3448; }
.lm-browser__bar i:nth-child(1) { background: #ff5f57; } .lm-browser__bar i:nth-child(2) { background: #febc2e; } .lm-browser__bar i:nth-child(3) { background: #28c840; }
.lm-browser__url { margin-left: 12px; flex: 1; height: 22px; padding: 0 12px; border-radius: 999px; background: #0f0d16; font-size: 11px; line-height: 22px; color: var(--lm-muted); }
.lm-browser__page { position: relative; display: flex; flex-direction: column; gap: 22px; padding: 20px 22px 26px; min-height: 300px; }
.lm-wf-nav { display: flex; align-items: center; gap: 10px; }
.lm-wf-nav .lm-b { height: 8px; width: 36px; border-radius: 4px; background: #3a3448; }
.lm-wf-nav .lm-wf-logo { width: 22px; height: 22px; margin-right: auto; border-radius: 6px; background: linear-gradient(135deg, #fbac1a, #e32d8a, #2d449b); clip-path: polygon(0 20%, 100% 0, 72% 100%); }
.lm-wf-nav .lm-wf-btn { width: 58px; height: 20px; border-radius: 999px; background: var(--lm-grad-btn); }
.lm-wf-hero { display: flex; flex-direction: column; gap: 10px; }
.lm-wf-h { height: 20px; width: 82%; border-radius: 6px; background: var(--lm-grad); background-size: 200% 100%; }
.lm-wf-h--short { width: 58%; }
.lm-wf-p { height: 8px; width: 70%; border-radius: 4px; background: #3a3448; margin-top: 4px; }
.lm-wf-p--short { width: 52%; margin-top: 0; }
.lm-wf-cta { position: relative; width: 120px; height: 30px; margin-top: 8px; border-radius: 999px; background: var(--lm-grad-btn); overflow: hidden; }
.lm-wf-ripple { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; margin: -5px; border-radius: 50%; background: rgba(255, 255, 255, .7); opacity: 0; animation: lm-ripple 9s ease-out infinite; }
.lm-wf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lm-wf-cards .lm-b { height: 74px; border-radius: 10px; background: #1f1a2b; border: 1px solid var(--lm-line); position: relative; overflow: hidden; }
.lm-wf-cards .lm-b::before { content: ""; position: absolute; left: 10px; right: 10px; top: 10px; height: 34px; border-radius: 6px; background: linear-gradient(135deg, rgba(251, 172, 26, .7), rgba(227, 45, 138, .7)); }
.lm-wf-cards .lm-b:nth-child(2)::before { background: linear-gradient(135deg, rgba(227, 45, 138, .7), rgba(123, 58, 156, .7)); }
.lm-wf-cards .lm-b:nth-child(3)::before { background: linear-gradient(135deg, rgba(123, 58, 156, .7), rgba(45, 68, 155, .8)); }
.lm-wf-cards .lm-b::after { content: ""; position: absolute; left: 10px; width: 60%; bottom: 12px; height: 6px; border-radius: 3px; background: #3a3448; }
.lm-cursor { position: absolute; left: 0; top: 0; z-index: 3; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .6)); animation: lm-cursor 9s var(--lm-ease) infinite; }

/* Telefon: isti sajt, responzivno */
.lm-phone { position: absolute; left: 460px; top: 290px; display: flex; flex-direction: column; gap: 10px; width: 150px; height: 290px; padding: 30px 12px 14px; border-radius: 28px; background: #0f0d16; border: 6px solid #242032; box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .9); animation: lm-float 8s ease-in-out infinite reverse; }
.lm-phone__notch { position: absolute; left: 50%; top: 8px; width: 46px; height: 8px; margin-left: -23px; border-radius: 999px; background: #242032; }
.lm-ph-h { height: 14px; width: 90%; border-radius: 4px; background: var(--lm-grad); }
.lm-ph-p { height: 6px; width: 70%; border-radius: 3px; background: #3a3448; }
.lm-ph-img { flex: 1; border-radius: 10px; background: linear-gradient(160deg, rgba(227, 45, 138, .6), rgba(45, 68, 155, .7)); }
.lm-ph-btn { height: 24px; border-radius: 999px; background: var(--lm-grad-btn); }

/* Sekvenca "gradnje" — blokovi se pojavljuju jedan za drugim, pa krug kreće ispočetka */
.lm-b { animation: lm-build 9s var(--lm-ease) infinite; animation-delay: calc(var(--s, 0) * .28s); }

.lm-chip-float {
	position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 18px;
	border-radius: 18px; background: rgba(20, 17, 29, .82); border: 1px solid var(--lm-line-2);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	font-size: 14px; line-height: 1.3; white-space: nowrap;
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .7);
}
.lm-chip-float strong { display: block; font-weight: 800; }
.lm-chip-float small { display: block; color: var(--lm-muted); font-size: 13px; }
.lm-chip-float__ico { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--lm-orange), var(--lm-pink)); color: var(--lm-black); }
.lm-chip-float__num { font-family: var(--lm-display); font-weight: 800; font-size: 28px; }
.lm-chip-float--a { left: -10px; top: 500px; animation: lm-float 7s ease-in-out infinite; }
.lm-chip-float--b { right: 20px; top: 590px; animation: lm-float 9s ease-in-out infinite reverse; }
.lm-chip-float__ico--code { font-family: ui-monospace, Menlo, monospace; font-weight: 800; font-size: 13px; }

.lm-hero__content { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.lm-hero__title { font-size: clamp(40px, 4.6vw, 70px); font-weight: 800; line-height: .98; }
.lm-hero__content > * { max-width: min(640px, 100%); }
@media (min-width: 1101px) { .lm-hero__content > * { max-width: min(640px, 47vw); } }
.lm-hero__title .lm-grad { display: block; }
.lm-hero__lead { max-width: 580px; }
.lm-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lm-stats {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px;
	margin: clamp(56px, 8vw, 110px) 0 0; padding: 28px 0 clamp(40px, 5vw, 64px); border-top: 1px solid var(--lm-line);
}
.lm-stats > div { display: flex; flex-direction: column-reverse; gap: 4px; }
.lm-stats dt { font-size: 14px; color: var(--lm-muted); }
.lm-stats dd { margin: 0; font-family: var(--lm-display); font-weight: 700; font-size: clamp(28px, 3vw, 40px); line-height: 1; }

/* Uvodna animacija (jedan orkestriran trenutak pri učitavanju) */
.lm-js .lm-intro { opacity: 0; transform: translateY(26px); animation: lm-rise .95s var(--lm-ease) forwards; animation-delay: calc(.1s + var(--d, 0) * .1s); }

@media (max-width: 1100px) {
	.lm-hero__visual { right: -260px; opacity: .55; }
	.lm-chip-float { display: none; }
}
@media (max-width: 720px) {
	.lm-hero { display: flex; flex-direction: column; }
	.lm-hero__visual { position: relative; order: 2; right: auto; top: auto; width: 100%; height: 360px; margin-top: 40px; opacity: 1; z-index: 0; }
	.lm-hero__visual .lm-browser { left: 50%; top: 20px; width: 330px; margin-left: -190px; transform: none; }
	.lm-hero__visual .lm-browser__page { min-height: 230px; gap: 16px; padding: 16px; }
	.lm-hero__visual .lm-wf-cards .lm-b { height: 56px; }
	.lm-hero__visual .lm-phone { left: auto; right: 4%; top: 150px; width: 110px; height: 200px; padding-top: 24px; }
	.lm-hero__shape { width: 320px; height: 320px; right: -80px; top: -20px; opacity: .6; }
	.lm-hero__logo { width: 92px; right: 8px; top: -8px; }
	.lm-hero > .lm-container:last-child { order: 3; }
	.lm-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lm-hero__actions .lm-btn { width: 100%; }
}

/* ---------- Ukošena traka ---------- */
.lm-band { position: relative; height: clamp(150px, 16vw, 230px); overflow: hidden; }
.lm-band__back, .lm-band__front { position: absolute; left: -4%; right: -4%; top: 50%; height: clamp(52px, 6vw, 86px); margin-top: calc(clamp(52px, 6vw, 86px) / -2); }
.lm-band__back { background: var(--lm-grad); transform: rotate(2.4deg); }
.lm-band__front { background: var(--lm-paper); color: var(--lm-black); transform: rotate(-2.4deg); display: flex; align-items: center; }
.lm-band .lm-marquee__track li { font-family: var(--lm-display); font-weight: 800; text-transform: uppercase; font-size: clamp(20px, 2.8vw, 40px); letter-spacing: -.02em; }
.lm-band .lm-marquee__track li::after { color: var(--lm-pink); }

/* ---------- Marquee ---------- */
.lm-marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.lm-band .lm-marquee, .lm-band__front { -webkit-mask-image: none; mask-image: none; }
.lm-marquee__track { display: flex; flex-shrink: 0; align-items: center; gap: 40px; padding-right: 40px; list-style: none; white-space: nowrap; animation: lm-marquee 36s linear infinite; }
.lm-marquee__track li { display: inline-flex; align-items: center; gap: 40px; }
.lm-marquee__track li::after { content: "✦"; font-size: .7em; }
.lm-marquee--slow .lm-marquee__track { animation-duration: 90s; }
.lm-marquee--rev .lm-marquee__track { animation-direction: reverse; }
.lm-marquee:hover .lm-marquee__track { animation-play-state: paused; }

/* ---------- Usluge u redovima ---------- */
.lm-rows { list-style: none; border-bottom: 1px solid var(--lm-line); }
.lm-row {
	display: grid; grid-template-columns: 56px auto minmax(0, 1fr) minmax(0, 320px) 72px; align-items: center; gap: 28px;
	padding: clamp(24px, 3vw, 40px) 0; border-top: 1px solid var(--lm-line); border-radius: var(--lm-r);
	text-decoration: none; transition: background-color .45s var(--lm-ease), padding .45s var(--lm-ease);
}
.lm-row__num { font-size: 15px; font-weight: 700; color: var(--lm-muted); }
.lm-row__thumb {
	display: inline-flex; align-items: center; justify-content: center; width: 0; height: 96px; overflow: hidden;
	border-radius: 20px; background: var(--g); color: #fff; opacity: 0;
	transition: width .55s var(--lm-ease), opacity .4s;
}
.lm-row__main { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.lm-row__title { font-family: var(--lm-display); font-weight: 700; text-transform: uppercase; letter-spacing: -.03em; line-height: 1; font-size: clamp(28px, 4.6vw, 64px); }
.lm-row__tags { font-size: 14px; font-weight: 600; color: var(--lm-muted); }
.lm-row__desc { font-size: 16px; color: var(--lm-soft); }
.lm-row__arrow {
	display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%;
	border: 1px solid var(--lm-line-2); transition: transform .45s var(--lm-ease), background-color .45s, color .45s;
}
@media (hover: hover) {
	.lm-row:hover { background: var(--lm-surface); padding-inline: 28px; }
	.lm-row:hover .lm-row__thumb { width: 140px; opacity: 1; }
	.lm-row:hover .lm-row__arrow { transform: rotate(-45deg); background: var(--lm-text); color: var(--lm-black); }
}
.lm-row:focus-visible .lm-row__arrow { background: var(--lm-text); color: var(--lm-black); }
@media (max-width: 1000px) {
	.lm-row { grid-template-columns: 40px minmax(0, 1fr) 56px; gap: 16px; }
	.lm-row__thumb, .lm-row__desc { display: none; }
	.lm-row__arrow { width: 56px; height: 56px; background: var(--g); border: 0; color: #fff; }
}

/* ---------- Zašto LunaMedia ---------- */
.lm-why__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 28px; }
.lm-why__card { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; padding: clamp(28px, 4.5vw, 60px); border-radius: var(--lm-r-lg); background: var(--lm-paper); color: var(--lm-paper-ink); }
.lm-why__card .lm-h2 { font-size: clamp(30px, 3.6vw, 50px); }
.lm-why__lead { color: var(--lm-paper-muted); max-width: 62ch; }
.lm-why__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; list-style: none; }
.lm-why__list h3 { font-size: 19px; margin: 14px 0 6px; }
.lm-why__list p { font-size: 15px; color: var(--lm-paper-muted); }
.lm-why__ico { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 15px; background: var(--lm-black); color: var(--lm-orange); }
.lm-why__list li:nth-child(2) .lm-why__ico { color: var(--lm-pink-text); }
.lm-why__list li:nth-child(3) .lm-why__ico { color: #a98bff; }
.lm-why__side { display: flex; flex-direction: column; gap: 14px; }
.lm-why__photo { flex: 1; min-height: 280px; border-radius: var(--lm-r-lg); overflow: hidden; background: var(--lm-surface); border: 1px solid var(--lm-line); display: flex; align-items: center; justify-content: center; }
.lm-why__photo img { width: 100%; height: 100%; object-fit: cover; }
.lm-why__photo { position: relative; }
.lm-why__photo-ph { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px 14px; border-radius: 12px; background: rgba(7, 6, 11, .8); text-align: center; font-size: 13px; color: var(--lm-muted); }
.lm-why__brand { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 280px; }
.lm-why__shape { position: absolute; width: 70%; height: auto; opacity: .35; animation: lm-tilt 14s ease-in-out infinite; }
.lm-why__brand img { position: relative; width: 38%; max-width: 170px; filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .5)); animation: lm-float 7s ease-in-out infinite; }
.lm-stat-pill { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; border-radius: 22px; background: var(--lm-surface); border: 1px solid var(--lm-line); }
.lm-stat-pill strong { font-family: var(--lm-display); font-size: clamp(30px, 3vw, 42px); line-height: 1; }
.lm-stat-pill span { font-weight: 700; color: var(--lm-soft); text-align: right; }
.lm-stat-pill--grad { background: var(--lm-grad-btn); border: 0; }
.lm-stat-pill--grad span { color: #fff; }
@media (max-width: 1000px) {
	.lm-why__grid { grid-template-columns: 1fr; }
	.lm-why__list { grid-template-columns: 1fr; }
}

/* ---------- Portfolio ---------- */
.lm-work { overflow: hidden; }
.lm-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.lm-filter {
	display: inline-flex; align-items: center; min-height: 46px; padding: 0 20px; border-radius: 999px;
	border: 1px solid var(--lm-line-2); background: transparent; font-size: 15px; font-weight: 700; color: var(--lm-soft); text-decoration: none;
	transition: background-color .25s, color .25s, border-color .25s;
}
.lm-filter:hover { color: var(--lm-text); border-color: var(--lm-text); }
.lm-filter[aria-pressed="true"], .lm-filter[aria-current="page"] { background: var(--lm-text); color: var(--lm-black); border-color: var(--lm-text); }
.lm-projects { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; list-style: none; }
.lm-project.is-hidden { display: none; }
.lm-project__card {
	position: relative; display: flex; flex-direction: column; gap: 16px; height: 100%; padding: 12px 12px 20px;
	border-radius: var(--lm-r); background: var(--lm-surface); border: 1px solid var(--lm-line); text-decoration: none;
	transition: transform .5s var(--lm-ease), border-color .4s;
}
a.lm-project__card:hover { transform: translateY(-8px); border-color: var(--lm-pink); }
.lm-project__media { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 3 / 2; border-radius: 16px; overflow: hidden; background: var(--g); }
.lm-project__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--lm-ease); }
a.lm-project__card:hover .lm-project__media img { transform: scale(1.06); }
.lm-project__initial { font-family: var(--lm-display); font-weight: 800; font-size: 64px; color: rgba(255, 255, 255, .9); }
.lm-project__meta { display: flex; flex-direction: column; gap: 2px; padding: 0 6px; padding-right: 36px; }
.lm-project__name { font-weight: 800; font-size: 17px; line-height: 1.3; }
.lm-project__type { font-size: 13px; color: var(--lm-muted); }
.lm-project__go { position: absolute; right: 18px; bottom: 20px; color: var(--lm-pink-text); }
@media (max-width: 1100px) { .lm-projects { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px) { .lm-projects { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 480px) { .lm-projects { grid-template-columns: 1fr; } }

.lm-clients { margin-top: clamp(48px, 6vw, 80px); }
.lm-clients__label { max-width: var(--lm-max); margin: 0 auto 16px; padding-inline: var(--lm-gutter); font-size: 14px; font-weight: 700; color: var(--lm-muted); }
.lm-clients .lm-marquee { border-block: 1px solid var(--lm-line); padding-block: 22px; }
.lm-clients .lm-marquee__track li { font-family: var(--lm-display); font-weight: 600; font-size: clamp(18px, 2vw, 26px); color: #7d768f; }

/* ---------- Recenzije ---------- */
.lm-reviews__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.lm-reviews__head { display: flex; flex-direction: column; gap: 24px; }
.lm-google { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 18px; background: var(--lm-surface); border: 1px solid var(--lm-line); font-size: 14px; }
.lm-google__g { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: #4285f4; font-family: var(--lm-display); font-weight: 800; }
.lm-carousel__nav { display: flex; gap: 12px; }
.lm-carousel {
	position: relative; min-height: 400px; padding: clamp(28px, 4.5vw, 60px); overflow: hidden;
	border-radius: var(--lm-r-lg); background: var(--lm-surface); border: 1px solid var(--lm-line);
	display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
	touch-action: pan-y;
}
.lm-carousel__orb { position: absolute; right: -70px; top: -80px; width: 260px; height: 260px; opacity: .25; animation: lm-tilt 12s ease-in-out infinite; }
.lm-quote { position: relative; margin: 0; display: flex; flex-direction: column; gap: 32px; }
.lm-quote[hidden] { display: none; }
.lm-quote.is-active { animation: lm-fade-in .6s var(--lm-ease); }
.lm-quote blockquote { margin: 0; }
.lm-quote blockquote p { font-size: clamp(21px, 2.3vw, 32px); line-height: 1.42; font-weight: 600; letter-spacing: -.01em; }
.lm-quote blockquote p::before { content: "“"; display: block; height: .55em; font-family: var(--lm-display); font-size: 3.6em; line-height: .9; background: var(--lm-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lm-quote figcaption { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.lm-quote__avatar { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--lm-orange), var(--lm-purple)); font-weight: 800; font-size: 20px; }
.lm-carousel__dots { position: relative; display: flex; gap: 8px; }
.lm-carousel__dots span { width: 8px; height: 8px; border-radius: 999px; background: rgba(255, 255, 255, .25); transition: width .35s var(--lm-ease), background-color .35s; }
.lm-carousel__dots span.is-active { width: 32px; background: var(--lm-pink); }
@media (max-width: 900px) { .lm-reviews__grid { grid-template-columns: 1fr; } .lm-carousel { min-height: 0; } }

/* ---------- Proces ---------- */
.lm-process { margin-top: var(--lm-section); padding-bottom: var(--lm-section); background: var(--lm-paper); color: var(--lm-paper-ink); }
.lm-process + .lm-section { padding-top: var(--lm-section); }
.lm-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin-top: clamp(36px, 5vw, 60px); list-style: none; counter-reset: none; }
.lm-step { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 3px solid var(--lm-paper-ink); }
.lm-step__num { font-family: var(--lm-display); font-weight: 800; font-size: clamp(40px, 4.4vw, 60px); line-height: 1; background: var(--lm-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lm-step h3 { font-size: 21px; }
.lm-step p { font-size: 15px; color: var(--lm-paper-muted); }
@media (max-width: 900px) { .lm-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .lm-steps { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.lm-faq__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.lm-faq__head { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--lm-header-h) + 24px); }
.lm-faq__head .lm-h2 { font-size: clamp(32px, 3.8vw, 52px); }
.lm-accordion { display: flex; flex-direction: column; gap: 12px; }
.lm-accordion__item { border-radius: 22px; border: 1px solid var(--lm-line); transition: background-color .35s; }
.lm-accordion__item.is-open { background: var(--lm-surface); }
.lm-accordion__q { font-size: inherit; }
.lm-accordion__q button {
	display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; min-height: 76px;
	padding: 18px 24px; border: 0; background: none; text-align: left; font-size: 18px; font-weight: 800; line-height: 1.35;
}
.lm-accordion__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1); transition: transform .4s var(--lm-ease), background .35s; }
.lm-accordion__item.is-open .lm-accordion__icon { transform: rotate(45deg); background: var(--lm-grad-btn); }
.lm-accordion__a { overflow: hidden; transition: height .45s var(--lm-ease); }
.lm-accordion__a p { padding: 0 72px 24px 24px; color: var(--lm-soft); }
@media (max-width: 900px) { .lm-faq__grid { grid-template-columns: 1fr; } .lm-faq__head { position: static; } .lm-accordion__a p { padding-right: 24px; } }

/* ---------- Blog kartice ---------- */
.lm-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.lm-post__link { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: 26px; background: var(--lm-surface); border: 1px solid var(--lm-line); text-decoration: none; transition: transform .5s var(--lm-ease), border-color .4s; }
.lm-post__link:hover { transform: translateY(-8px); border-color: var(--lm-pink); }
.lm-post__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--lm-surface-2); }
.lm-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--lm-ease); }
.lm-post__link:hover .lm-post__media img { transform: scale(1.06); }
.lm-post__ph { position: absolute; inset: 0; background: var(--lm-grad); opacity: .5; }
.lm-post__date { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: 50%; background: #c8207a; color: #fff; font-weight: 800; font-size: 21px; line-height: 1; }
.lm-post__date span { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.lm-post__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 24px 26px 26px; }
.lm-post__cat { font-size: 13px; font-weight: 800; color: var(--lm-pink-text); }
.lm-post__title { font-size: 21px; line-height: 1.3; font-weight: 800; }
.lm-post__excerpt { font-size: 15px; color: var(--lm-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lm-post__more { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; font-size: 14px; font-weight: 800; }
@media (max-width: 1000px) { .lm-posts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .lm-posts { grid-template-columns: 1fr; } }

/* ---------- CTA i forma ---------- */
.lm-cta { padding-top: var(--lm-section); }
.lm-cta__box {
	position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; overflow: hidden; isolation: isolate;
	padding: clamp(40px, 7vw, 110px) clamp(24px, 6vw, 96px); border-radius: 40px; background: var(--lm-ink); border: 1px solid var(--lm-line);
	text-align: center; justify-items: center;
}
.lm-cta--form .lm-cta__box { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); text-align: left; justify-items: stretch; align-items: start; }
.lm-cta__orb { position: absolute; z-index: -1; left: 50%; top: 50%; width: 820px; height: 820px; margin: -410px 0 0 -410px; opacity: .45; animation: lm-tilt 16s ease-in-out infinite; }
.lm-cta--form .lm-cta__orb { left: 25%; }
.lm-cta__text { display: flex; flex-direction: column; gap: 22px; align-items: inherit; }
.lm-cta--form .lm-cta__text { align-items: flex-start; }
.lm-cta__title { font-size: clamp(40px, 7vw, 104px); font-weight: 800; line-height: .95; }
.lm-cta__title .lm-grad { display: block; }
.lm-cta--form .lm-cta__title { font-size: clamp(38px, 5vw, 76px); }
.lm-cta__lead { color: var(--lm-soft); font-size: 18px; max-width: 56ch; }
.lm-cta__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; list-style: none; color: var(--lm-muted); font-size: 15px; }
.lm-cta--form .lm-cta__contact { flex-direction: column; justify-content: flex-start; font-size: 17px; }
.lm-cta__contact li { display: inline-flex; align-items: center; gap: 10px; }
.lm-cta__contact .lm-ico { color: var(--lm-pink-text); }
.lm-cta__contact a { color: var(--lm-text); font-weight: 800; text-decoration: none; }
.lm-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.lm-cta__form { position: relative; padding: clamp(22px, 3vw, 36px); border-radius: 28px; background: rgba(7, 6, 11, .6); border: 1px solid var(--lm-line); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
@media (max-width: 960px) { .lm-cta--form .lm-cta__box { grid-template-columns: 1fr; } }

.lm-form { display: flex; flex-direction: column; gap: 18px; }
.lm-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lm-field { display: flex; flex-direction: column; gap: 8px; margin: 0; border: 0; padding: 0; min-width: 0; }
.lm-field > label, .lm-field legend { font-size: 14px; font-weight: 700; color: var(--lm-soft); padding: 0; margin-bottom: 8px; }
.lm-field > label { margin-bottom: 0; }
.lm-field input, .lm-field textarea, .lm-search input {
	width: 100%; min-height: 54px; padding: 14px 16px; border-radius: 14px;
	border: 1px solid var(--lm-line-2); background: var(--lm-black); color: var(--lm-text);
	transition: border-color .25s, box-shadow .25s;
}
.lm-field textarea { resize: vertical; min-height: 120px; }
.lm-field input:focus, .lm-field textarea:focus, .lm-search input:focus { outline: none; border-color: var(--lm-pink); box-shadow: 0 0 0 4px rgba(227, 45, 138, .2); }
.lm-field input::placeholder, .lm-field textarea::placeholder { color: #7d768f; }
.lm-chips { flex-direction: row; flex-wrap: wrap; gap: 10px; }
.lm-chips legend { width: 100%; }
.lm-chip { position: relative; cursor: pointer; }
.lm-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.lm-chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--lm-line-2); font-size: 14px; font-weight: 700; transition: background-color .2s, border-color .2s, color .2s; }
.lm-chip input:checked + span { background: var(--lm-text); color: var(--lm-black); border-color: var(--lm-text); }
.lm-chip input:focus-visible + span { outline: 2px solid var(--lm-orange); outline-offset: 3px; }
.lm-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--lm-muted); cursor: pointer; }
.lm-consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--lm-pink); }
.lm-form .lm-btn { align-self: flex-start; }
.lm-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lm-form__status { font-weight: 700; min-height: 1.6em; }
.lm-form__status.is-ok { color: #6ee7a8; }
.lm-form__status.is-err { color: #ff8a8a; }
.lm-form.is-sending .lm-btn { opacity: .7; pointer-events: none; }
@media (max-width: 560px) { .lm-form__row { grid-template-columns: 1fr; } .lm-form .lm-btn { width: 100%; } }

/* ---------- Podnožje ---------- */
.lm-footer { margin-top: var(--lm-section); padding: clamp(56px, 7vw, 90px) 0 calc(36px + env(safe-area-inset-bottom, 0)); background: #030206; border-top: 1px solid var(--lm-line); }
.lm-footer__grid { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.lm-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.lm-footer__brand p { max-width: 42ch; font-size: 15px; color: var(--lm-muted); }
.lm-logo--footer .lm-logo__img { width: 72px; }
.lm-footer__title { font-size: 16px; font-weight: 800; margin-bottom: 18px; font-family: var(--lm-font); }
.lm-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lm-footer__col a { color: var(--lm-muted); text-decoration: none; font-size: 15px; }
.lm-footer__col a:hover { color: var(--lm-text); }
.lm-footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--lm-muted); }
.lm-footer__contact .lm-ico { flex-shrink: 0; margin-top: 3px; color: var(--lm-pink-text); }
.lm-social { display: flex; gap: 10px; list-style: none; }
.lm-social a { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--lm-line-2); transition: background-color .25s, color .25s, transform .3s var(--lm-ease); }
.lm-social a:hover { background: var(--lm-text); color: var(--lm-black); transform: translateY(-3px); }
.lm-footer__word { margin: clamp(40px, 6vw, 80px) 0 24px; font-family: var(--lm-display); font-weight: 800; letter-spacing: -.055em; line-height: .82; font-size: clamp(56px, 14.5vw, 224px); background: var(--lm-grad); -webkit-background-clip: text; background-clip: text; color: transparent; user-select: none; }
.lm-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--lm-line); font-size: 14px; color: var(--lm-muted); }
.lm-footer__bottom a { text-decoration: none; }
@media (max-width: 1000px) { .lm-footer__grid { grid-template-columns: 1fr 1fr; } .lm-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .lm-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Unutrašnje stranice ---------- */
.lm-phero { position: relative; overflow: hidden; isolation: isolate; padding: calc(var(--lm-header-h) + clamp(40px, 6vw, 80px)) 0 clamp(20px, 3vw, 40px); }
.lm-phero__orb { position: absolute; z-index: -1; right: -60px; top: 40px; width: 460px; height: 460px; }
.lm-phero__orb .lm-shape { position: absolute; inset: 0; }
.lm-phero__orb .lm-shape:first-child { transform: translate(-40px, 30px) rotate(-8deg); opacity: .6; }
.lm-phero__orb .lm-shape:last-child { opacity: .42; animation: lm-tilt 14s ease-in-out infinite; }
.lm-phero__title { font-size: clamp(40px, 6.4vw, 96px); font-weight: 800; max-width: 14em; }
.lm-phero__lead { margin-top: 24px; }

.lm-shero { position: relative; overflow: hidden; isolation: isolate; padding: calc(var(--lm-header-h) + clamp(36px, 5vw, 64px)) 0 0; }
.lm-shero__visual { position: absolute; z-index: -1; right: max(-100px, calc((100vw - var(--lm-max)) / 2)); top: calc(var(--lm-header-h) + 10px); width: 580px; height: 580px; }
.lm-shero__shape { position: absolute; inset: 40px; width: auto; height: auto; animation: lm-tilt 14s ease-in-out infinite; }
.lm-shero__outline { position: absolute; inset: 0; width: auto; height: auto; transform: rotate(-10deg); opacity: .55; }
.lm-shero__icon { position: absolute; left: 44%; top: 34%; display: flex; color: #fff; filter: drop-shadow(0 10px 24px rgba(7, 6, 11, .45)); animation: lm-float 6s ease-in-out infinite; }
.lm-shero__num { position: absolute; left: 0; bottom: 10px; font-family: var(--lm-display); font-weight: 800; font-size: 130px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .3); }
.lm-shero__content { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.lm-shero__title { display: flex; flex-direction: column; font-size: clamp(42px, 7vw, 100px); font-weight: 800; line-height: .97; }
.lm-shero .lm-lead { max-width: 600px; }
@media (max-width: 1000px) {
	.lm-shero__visual, .lm-phero__orb { opacity: .45; right: -260px; }
}

.lm-svc-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: clamp(32px, 6vw, 88px); align-items: start; }
.lm-sticky-card { position: sticky; top: calc(var(--lm-header-h) + 24px); display: flex; flex-direction: column; gap: 20px; padding: 32px; border-radius: 28px; background: var(--lm-surface); border: 1px solid var(--lm-line); }
.lm-sticky-card__title { font-family: var(--lm-display); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: -.02em; }
.lm-sticky-card__note { font-size: 14px; color: var(--lm-muted); text-align: center; }
.lm-sticky-card__note a { color: var(--lm-text); font-weight: 800; text-decoration: none; }
.lm-checks { display: flex; flex-direction: column; gap: 12px; list-style: none; font-size: 15px; font-weight: 600; }
.lm-checks li { display: flex; gap: 10px; align-items: flex-start; }
.lm-checks .lm-ico { flex-shrink: 0; margin-top: 3px; color: var(--lm-orange); }
@media (max-width: 1000px) { .lm-svc-intro__grid { grid-template-columns: 1fr; } .lm-sticky-card { position: static; } }

.lm-features__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; }
.lm-feature { display: flex; flex-direction: column; gap: 14px; padding: 32px; border-radius: 26px; background: var(--lm-surface); border: 1px solid var(--lm-line); transition: transform .5s var(--lm-ease), border-color .4s; }
.lm-feature:hover { transform: translateY(-6px); border-color: var(--lm-line-2); }
.lm-feature__ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--g); color: #fff; }
.lm-feature h3 { font-size: 21px; }
.lm-feature p { font-size: 15px; color: var(--lm-muted); }
@media (max-width: 1000px) { .lm-features__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .lm-features__grid { grid-template-columns: 1fr; } }

.lm-packages__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; }
.lm-package { display: flex; flex-direction: column; gap: 20px; padding: 36px; border-radius: 30px; background: var(--lm-surface); border: 1px solid var(--lm-line); }
.lm-package--hot { background: var(--lm-grad-btn); border: 0; transform: translateY(-12px); box-shadow: 0 30px 70px -30px rgba(227, 45, 138, .7); }
.lm-package__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lm-package h3 { font-family: var(--lm-display); font-weight: 700; font-size: 21px; text-transform: uppercase; letter-spacing: -.02em; }
.lm-package__desc { font-size: 15px; color: var(--lm-muted); }
.lm-package--hot .lm-package__desc { color: #fff; }
.lm-package__price { font-family: var(--lm-display); font-weight: 700; font-size: clamp(26px, 2.4vw, 34px); }
.lm-package .lm-checks { flex: 1; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .18); }
.lm-package--hot .lm-checks .lm-ico { color: #fff; }
.lm-badge { padding: 6px 12px; border-radius: 999px; background: var(--lm-text); color: var(--lm-black); font-size: 12px; font-weight: 800; white-space: nowrap; }
@media (max-width: 1000px) { .lm-packages__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } .lm-package--hot { transform: none; } }

.lm-related__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; list-style: none; margin-top: 24px; }
.lm-related__card { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 100%; padding: 28px; border-radius: 24px; background: var(--lm-surface); border: 1px solid var(--lm-line); text-decoration: none; transition: transform .5s var(--lm-ease), border-color .4s; }
.lm-related__card:hover { transform: translateY(-6px); border-color: var(--lm-pink); }
.lm-related__card strong { display: block; font-family: var(--lm-display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: -.02em; }
.lm-related__card small { display: block; margin-top: 6px; font-size: 14px; color: var(--lm-muted); }
.lm-related__go { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--g); color: #fff; transition: transform .4s var(--lm-ease); }
.lm-related__card:hover .lm-related__go { transform: rotate(45deg); }
@media (max-width: 900px) { .lm-related__grid { grid-template-columns: 1fr; } }

/* ---------- Kontakt stranica ---------- */
.lm-contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.lm-contact__info { display: flex; flex-direction: column; gap: 22px; }
.lm-contact__cards { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.lm-contact__cards li { display: flex; gap: 16px; align-items: center; padding: 20px 22px; border-radius: 20px; background: var(--lm-surface); border: 1px solid var(--lm-line); }
.lm-contact__cards small { display: block; font-size: 13px; color: var(--lm-muted); }
.lm-contact__cards a, .lm-contact__cards strong { font-size: 18px; font-weight: 800; text-decoration: none; }
.lm-contact__ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 50px; height: 50px; border-radius: 15px; background: var(--lm-grad-btn); color: #fff; }
.lm-contact__form { display: flex; flex-direction: column; gap: 24px; padding: clamp(24px, 4vw, 48px); border-radius: 32px; background: var(--lm-ink); border: 1px solid var(--lm-line); }
.lm-map { border-radius: 24px; overflow: hidden; border: 1px solid var(--lm-line); aspect-ratio: 4 / 3; }
.lm-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) hue-rotate(180deg); }
@media (max-width: 900px) { .lm-contact__grid { grid-template-columns: 1fr; } }

/* ---------- Tekstualni sadržaj (blog, stranice, uvod usluge) ---------- */
.lm-prose { font-size: 18px; line-height: 1.75; color: var(--lm-soft); }
.lm-prose--narrow { max-width: 820px; margin-inline: auto; }
.lm-prose > * + * { margin-top: 1.15em; }
.lm-prose h2 { font-family: var(--lm-display); font-weight: 700; letter-spacing: -.025em; font-size: clamp(26px, 3vw, 40px); line-height: 1.1; color: var(--lm-text); margin-top: 1.8em; }
.lm-prose > h2:first-child { margin-top: 0; }
.lm-prose h3 { font-size: clamp(20px, 2vw, 24px); color: var(--lm-text); margin-top: 1.6em; }
.lm-prose h4 { font-size: 19px; color: var(--lm-text); }
.lm-prose strong { color: var(--lm-text); }
.lm-prose a { color: var(--lm-pink-text); font-weight: 700; }
.lm-prose a:hover { color: var(--lm-orange); }
.lm-prose ul, .lm-prose ol { padding-left: 1.3em; }
.lm-prose li + li { margin-top: .4em; }
.lm-prose li::marker { color: var(--lm-pink-text); }
.lm-prose blockquote { margin-inline: 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--lm-pink); font-size: 1.15em; color: var(--lm-text); }
.lm-prose img { border-radius: 20px; }
.lm-prose figure { margin-inline: 0; }
.lm-prose figcaption, .wp-caption-text { font-size: 14px; color: var(--lm-muted); margin-top: 10px; }
.lm-prose code { padding: 2px 6px; border-radius: 6px; background: var(--lm-surface-2); font-size: .9em; }
.lm-prose pre { padding: 20px; border-radius: 16px; background: var(--lm-surface); overflow-x: auto; }
.lm-prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.lm-prose th, .lm-prose td { padding: 12px 14px; border-bottom: 1px solid var(--lm-line); text-align: left; }
.lm-prose hr { border: 0; height: 1px; background: var(--lm-line); margin-block: 2.4em; }
.lm-prose .wp-block-button__link { background: var(--lm-grad-btn); color: #fff; border-radius: 999px; padding: 14px 26px; font-weight: 800; text-decoration: none; }
.alignwide { max-width: 1100px; margin-inline: calc((820px - 1100px) / 2); }
.alignfull { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
@media (max-width: 1180px) { .alignwide { margin-inline: 0; max-width: 100%; } }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: .4em 1.5em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.5em; }
.lm-broken { display: none !important; }
.lm-prose iframe { max-width: 100%; border: 0; border-radius: 16px; }
.lm-cover { margin: 0 0 40px; border-radius: 28px; overflow: hidden; }
.lm-cover img { width: 100%; }

.lm-article__title { font-family: var(--lm-display); font-weight: 700; letter-spacing: -.03em; font-size: clamp(32px, 4.6vw, 60px); line-height: 1.06; }
.lm-article__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 22px; font-size: 14px; color: var(--lm-muted); }
.lm-article__meta span { display: inline-flex; align-items: center; gap: 8px; }
.lm-article__body { padding-top: 32px; }
.lm-article__foot { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--lm-line); }
.lm-tags-line { display: flex; flex-wrap: wrap; gap: 8px; }
.lm-tags-line a { padding: 6px 14px; border-radius: 999px; border: 1px solid var(--lm-line-2); font-size: 14px; font-weight: 700; color: var(--lm-soft); text-decoration: none; }
.lm-share { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lm-share a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--lm-line-2); color: var(--lm-text); }
.lm-author-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding: 30px; border-radius: 26px; background: var(--lm-surface); border: 1px solid var(--lm-line); font-size: 16px; }

/* ---------- Paginacija, pretraga, komentari, 404 ---------- */
.lm-pagination { margin-top: 56px; }
.lm-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lm-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 50px; height: 50px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--lm-line-2); font-weight: 800; text-decoration: none; }
.lm-pagination .page-numbers.current { background: var(--lm-text); color: var(--lm-black); border-color: var(--lm-text); }
.lm-search { display: flex; gap: 10px; max-width: 520px; margin: 24px 0; }
.lm-search input { flex: 1; border-radius: 999px; padding-inline: 22px; }
.lm-empty { display: flex; flex-direction: column; gap: 12px; padding: 40px; border-radius: 28px; background: var(--lm-surface); }
.lm-404 { padding: calc(var(--lm-header-h) + 80px) 0 40px; }
.lm-404 .lm-container { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.lm-404__code { font-family: var(--lm-display); font-weight: 800; font-size: clamp(120px, 24vw, 320px); line-height: .8; letter-spacing: -.06em; }
.lm-comments { margin-top: 20px; }
.lm-comments__list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 24px 0 40px; }
.lm-comments__list .children { list-style: none; margin: 18px 0 0 24px; }
.lm-comments .comment-body { padding: 22px; border-radius: 20px; background: var(--lm-surface); }
.lm-comments .avatar { border-radius: 50%; float: left; margin-right: 14px; }
.comment-form { display: flex; flex-direction: column; gap: 14px; }
.comment-form label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--lm-soft); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--lm-line-2); background: var(--lm-black); }
.sticky, .bypostauthor, .gallery-caption { outline: 0; }

/* ---------- Otkrivanje pri skrolanju ---------- */
.lm-js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--lm-ease), transform .9s var(--lm-ease); transition-delay: calc(var(--d, 0) * .08s); }
.lm-js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Animacije ---------- */
@keyframes lm-spin { to { transform: rotate(360deg); } }
@keyframes lm-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes lm-glow { 0%, 100% { opacity: .5; } 50% { opacity: .9; } }
@keyframes lm-rise { to { opacity: 1; transform: none; } }
@keyframes lm-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes lm-marquee { to { transform: translateX(-100%); } }
@keyframes lm-tilt { 0%, 100% { transform: rotate(0deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-14px); } }
@keyframes lm-build {
	0% { opacity: 0; transform: translateY(10px) scale(.94); }
	7%, 86% { opacity: 1; transform: none; }
	95%, 100% { opacity: 0; transform: none; }
}
@keyframes lm-cursor {
	0% { transform: translate(470px, 330px); }
	30% { transform: translate(470px, 330px); }
	46% { transform: translate(100px, 196px); }
	50% { transform: translate(100px, 196px) scale(.82); }
	53% { transform: translate(100px, 196px) scale(1); }
	72% { transform: translate(250px, 270px); }
	100% { transform: translate(470px, 330px); }
}
@keyframes lm-ripple { 0%, 49% { opacity: 0; transform: scale(1); } 50% { opacity: .8; transform: scale(1); } 60%, 100% { opacity: 0; transform: scale(14); } }
@keyframes lm-pulse { 0% { box-shadow: 0 0 0 0 rgba(227, 45, 138, .6); } 100% { box-shadow: 0 0 0 14px rgba(227, 45, 138, 0); } }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.lm-js .lm-intro, .lm-js [data-reveal] { opacity: 1; transform: none; }
	.lm-marquee__track { animation: none !important; }
	.lm-b { animation: none !important; opacity: 1; }
	.lm-cursor, .lm-wf-ripple { display: none; }
	.lm-menu { transition: none; }
}

@media print {
	.lm-header, .lm-menu, .lm-footer, .lm-cta, .lm-hero__visual { display: none !important; }
	body { background: #fff; color: #000; }
}
