/* QR vCard Pro — Sales page styles */
:root {
	--ink: #1c1917;
	--ink-2: #44403c;
	--ink-3: #78716c;
	--line: #e7e5e0;
	--line-2: #d6d3d1;
	--paper: #fdfcf9;
	--cream: #f5f1ea;
	--accent: #c2410c;
	--accent-h: #9a3412;
	--accent-bg: #fef3c7;
	--success: #15803d;
	--success-bg: #f0fdf4;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ink);
	background: var(--paper);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }

/* Container — mobile: comfortable padding, desktop: full-width with 5% padding */
.container {
	max-width: none;
	margin: 0 auto;
	padding: 0 24px;
}
@media (min-width: 801px) {
	.container {
		padding: 0 5%;
	}
}

/* === Top navigation — modern, full-width, sticky === */
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--paper);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 1px 0 rgba(28, 25, 23, 0.02), 0 8px 24px -12px rgba(28, 25, 23, 0.08);
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 22px;
	padding-bottom: 22px;
	max-width: none;
	margin: 0;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 11px;
	font-weight: 700;
	font-size: 15.5px;
	color: var(--ink);
	letter-spacing: -0.015em;
	flex-shrink: 0;
}
.nav-brand-icon {
	display: inline-flex;
	width: 30px; height: 30px;
	background: var(--ink);
	color: #fff;
	border-radius: 7px;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}
.nav-brand:hover .nav-brand-icon { transform: rotate(-4deg) scale(1.04); }

.nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
}
.nav-links > a[data-nav-link] {
	position: relative;
	color: var(--ink-2);
	padding: 8px 14px;
	border-radius: 7px;
	transition: color 0.15s ease, background 0.15s ease;
}
.nav-links > a[data-nav-link]:hover {
	color: var(--ink);
	background: rgba(28, 25, 23, 0.04);
}
.nav-links > a[data-nav-link]::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links > a[data-nav-link]:hover::after { transform: scaleX(1); }

/* Primary CTA in nav — Stripe / Linear style */
.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	background: var(--ink);
	color: #fff !important;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: -0.005em;
	border-radius: 7px;
	border: 1px solid var(--ink);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
	margin-left: 8px;
}
.nav-cta:hover {
	background: #292524;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 6px 14px -4px rgba(28, 25, 23, 0.25);
}
.nav-cta:active { transform: translateY(0); }
.nav-cta svg { width: 12px; height: 12px; transition: transform 0.18s ease; }
.nav-cta:hover svg { transform: translateX(2px); }

/* Hero */
.hero {
	padding: 60px 0 80px;
	background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
	overflow: hidden;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
}
.hero-text {
	text-align: left;
}
.hero-badge {
	display: inline-block;
	background: var(--accent-bg);
	color: #78350f;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 22px;
}
.hero h1 {
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.05;
	margin: 0 0 20px;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
	font-size: 18px;
	color: var(--ink-2);
	max-width: 540px;
	margin: 0 0 28px;
	line-height: 1.5;
}
.hero-cta {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.hero-trust {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--ink-3);
}
.hero-trust-icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(22, 163, 74, 0.12);
	color: #15803d;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* === Hero visual — phone mockup with floating QR === */
.hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 540px;
}
.hero-mockup {
	position: relative;
	width: 340px;
	height: 540px;
}

/* Floating QR code badge — top right of phone */
.hero-mockup-qr {
	position: absolute;
	top: -10px;
	right: -30px;
	width: 130px;
	height: 130px;
	transform: rotate(8deg);
	filter: drop-shadow(0 12px 28px rgba(28, 25, 23, 0.18));
	z-index: 2;
	animation: qrvp-float 4s ease-in-out infinite;
}
.hero-mockup-qr svg {
	width: 100%;
	height: 100%;
	display: block;
}
@keyframes qrvp-float {
	0%, 100% { transform: rotate(8deg) translateY(0); }
	50%      { transform: rotate(8deg) translateY(-8px); }
}

/* Phone mockup */
.hero-mockup-phone {
	position: relative;
	z-index: 1;
}
.hero-phone-frame {
	width: 280px;
	height: 540px;
	background: #1c1917;
	border-radius: 42px;
	padding: 10px;
	box-shadow:
		0 24px 60px rgba(28, 25, 23, 0.22),
		0 6px 16px rgba(28, 25, 23, 0.12),
		inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
	position: relative;
	transform: rotate(-3deg);
	transition: transform 0.4s ease;
}
.hero-phone-frame:hover {
	transform: rotate(0);
}
.hero-phone-notch {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 22px;
	background: #000;
	border-radius: 14px;
	z-index: 3;
}
.hero-phone-screen {
	width: 100%;
	height: 100%;
	background: var(--paper);
	border-radius: 32px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
}
.hero-phone-status {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 28px 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--ink);
	height: 38px;
	flex-shrink: 0;
}
.hero-phone-time { font-variant-numeric: tabular-nums; }
.hero-phone-icons {
	display: flex;
	gap: 5px;
	align-items: center;
	color: var(--ink);
}
.hero-phone-cover {
	height: 90px;
	background: linear-gradient(135deg, #fdba74 0%, #c2410c 100%);
	flex-shrink: 0;
}
.hero-phone-avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 3px solid var(--paper);
	margin: -32px auto 0;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(28, 25, 23, 0.12);
}
.hero-phone-avatar svg {
	width: 100%;
	height: 100%;
	display: block;
}
.hero-phone-content {
	flex: 1;
	padding: 12px 18px 14px;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.hero-phone-name {
	font-size: 15px;
	font-weight: 800;
	color: var(--ink);
	margin: 4px 0 2px;
	letter-spacing: -0.01em;
}
.hero-phone-title {
	font-size: 11px;
	color: var(--ink-3);
	margin-bottom: 14px;
}
.hero-phone-actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	margin-bottom: 12px;
}
.hero-phone-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 4px;
	background: var(--cream);
	border-radius: 8px;
	font-size: 9.5px;
	font-weight: 600;
	color: var(--ink-2);
}
.hero-phone-action svg {
	color: var(--accent);
}
.hero-phone-action--phone {
	background: var(--accent-bg);
}
.hero-phone-action--phone svg {
	color: var(--accent);
}
.hero-phone-save {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 10px;
}
.hero-phone-footer {
	margin-top: auto;
	font-size: 8.5px;
	color: var(--ink-3);
	text-align: center;
	padding-top: 6px;
	border-top: 1px solid var(--line);
	letter-spacing: 0.01em;
}

/* Mobile — stack hero vertically */
@media (max-width: 900px) {
	.hero { padding: 40px 0 60px; }
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.hero-text { text-align: center; }
	.hero-sub { margin: 0 auto 24px; }
	.hero-cta { justify-content: center; }
	.hero h1 { font-size: 38px; }
	.hero-visual { min-height: 460px; order: 2; }
	.hero-mockup { width: 290px; height: 460px; }
	.hero-phone-frame { width: 240px; height: 460px; padding: 8px; border-radius: 36px; }
	.hero-phone-screen { border-radius: 28px; }
	.hero-mockup-qr {
		width: 100px;
		height: 100px;
		top: -8px;
		right: -16px;
	}
}
@media (max-width: 480px) {
	.hero h1 { font-size: 30px; }
	.hero-sub { font-size: 16px; }
}
.btn {
	display: inline-block;
	padding: 13px 26px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 7px;
	cursor: pointer;
	border: none;
	font-family: inherit;
	transition: all 0.15s ease;
}
.btn-primary {
	background: var(--accent);
	color: #fff;
}
.btn-primary:hover {
	background: var(--accent-h);
	color: #fff;
}
.btn-ghost {
	background: transparent;
	border: 1px solid var(--line-2);
	color: var(--ink);
}
.btn-ghost:hover {
	background: var(--cream);
	border-color: var(--ink-3);
}
.btn-large {
	padding: 16px 32px;
	font-size: 16px;
}
.btn-block { display: block; width: 100%; text-align: center; }

.hero-trust {
	margin-top: 24px;
	font-size: 13px;
	color: var(--ink-3);
}

/* Sections */
section {
	padding: 70px 0;
}
section.alt {
	background: var(--cream);
}
.section-head {
	text-align: center;
	margin-bottom: 50px;
}
.section-head h2 {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}
.section-head p {
	font-size: 17px;
	color: var(--ink-2);
	max-width: 600px;
	margin: 0 auto;
}

/* Features grid */
.features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.feature {
	background: var(--paper);
	padding: 26px 26px;
	border-radius: 10px;
	border: 1px solid var(--line);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
	border-color: rgba(194, 65, 12, 0.25);
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--accent-bg);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.feature-icon svg {
	width: 24px;
	height: 24px;
	display: block;
}
.feature h3 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
}
.feature p {
	margin: 0;
	font-size: 14px;
	color: var(--ink-2);
	line-height: 1.55;
}

/* Pricing */
.currency-toggle {
	display: flex;
	gap: 6px;
	justify-content: center;
	margin-bottom: 32px;
	padding: 4px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.currency-toggle a {
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-3);
	transition: all 0.15s;
}
.currency-toggle a.active {
	background: var(--ink);
	color: #fff;
}

.pricing {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	align-items: stretch;
}

/* 5-tier pricing layout (Personal + Single + Five + Unlimited + Agency) */
.pricing-5 {
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}
@media (max-width: 1100px) {
	.pricing-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
	.pricing-5 { grid-template-columns: repeat(2, 1fr); }
}

/* Compact tier styles for 5-column layout */
.pricing-5 .tier { padding: 22px 18px; }
.pricing-5 .tier-name { font-size: 17px; }
.pricing-5 .tier-tagline { font-size: 12px; min-height: 32px; }
.pricing-5 .tier-price-amount { font-size: 28px; }
.pricing-5 .tier-features { font-size: 12.5px; }
.pricing-5 .tier-features li { padding: 5px 0 5px 20px; }

/* === Language selector — modern, minimal === */
.lang-selector {
	position: relative;
	margin-left: 2px;
}
.lang-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 7px;
	padding: 7px 10px;
	font: 600 12px/1 inherit;
	color: var(--ink-2);
	cursor: pointer;
	letter-spacing: 0.04em;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.lang-toggle:hover {
	background: rgba(28, 25, 23, 0.04);
	color: var(--ink);
}
.lang-toggle[aria-expanded="true"] {
	background: rgba(28, 25, 23, 0.06);
	color: var(--ink);
}
.lang-toggle svg {
	opacity: 0.5;
	transition: transform 0.2s ease, opacity 0.15s ease;
}
.lang-toggle:hover svg { opacity: 0.8; }
.lang-toggle[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 0.8; }
.lang-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04), 0 12px 36px -8px rgba(28, 25, 23, 0.18);
	min-width: 200px;
	list-style: none;
	margin: 0;
	padding: 6px;
	z-index: 100;
}
.lang-menu li { margin: 0; }
.lang-menu li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 12px;
	color: var(--ink-2);
	text-decoration: none;
	font-size: 13.5px;
	border-radius: 6px;
	transition: background 0.1s, color 0.1s;
}
.lang-menu li a:hover { background: var(--cream); color: var(--ink); }
.lang-menu li.active a { color: var(--accent); font-weight: 600; background: rgba(194, 65, 12, 0.06); }
.lang-menu .lang-short {
	font: 700 11px/1 ui-monospace, Menlo, monospace;
	letter-spacing: 0.05em;
	min-width: 34px;
	color: var(--ink-3);
}
.lang-menu li.active .lang-short { color: var(--accent); }
.lang-menu .lang-name { font-size: 13.5px; }
.tier {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.tier.popular {
	border: 2px solid var(--accent);
	box-shadow: 0 10px 28px rgba(194,65,12,0.10);
}
.tier-popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #fff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.tier-name {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 4px;
}
.tier-tagline {
	font-size: 13px;
	color: var(--ink-3);
	margin-bottom: 20px;
	min-height: 38px;
}
.tier-price {
	margin-bottom: 22px;
}
.tier-price-amount {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ink);
	line-height: 1;
}
.tier-price-period {
	font-size: 13px;
	color: var(--ink-3);
	margin-top: 6px;
}
.tier-features {
	flex: 1;
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.tier-features li {
	font-size: 13px;
	padding: 7px 0 7px 24px;
	color: var(--ink-2);
	position: relative;
	line-height: 1.4;
}
.tier-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 7px;
	color: var(--success);
	font-weight: 700;
}
.tier .btn { margin-top: auto; }

/* FAQ */
.faq {
	max-width: 720px;
	margin: 0 auto;
}
.faq details {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 18px 24px;
	margin-bottom: 12px;
}
.faq details[open] {
	background: var(--cream);
}
.faq summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: var(--ink);
	list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	float: right;
	color: var(--ink-3);
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq-body {
	margin-top: 12px;
	font-size: 14px;
	color: var(--ink-2);
	line-height: 1.6;
}
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }

/* Footer */
/* ===========================================================
   FOOTER — Blinq-style dizajn (h25)
   Layout: 2 CTA dugmad levo + 3 kolone, ispod veliki tipografski
   logo + copyright. Accent narandžasta pozadina, tamni tekst.
   =========================================================== */
.site-footer {
	background: var(--accent);
	color: #1c1917;
	padding: 64px 0 32px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Grid: CTA levo + 3 kolone --- */
.footer-grid {
	display: grid;
	grid-template-columns: 280px 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 80px;
}

/* --- CTA dugmad levo --- */
.footer-ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.footer-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
	white-space: nowrap;
}
.footer-btn-primary {
	background: #1c1917;
	color: #fff;
	border: 1.5px solid #1c1917;
}
.footer-btn-primary:hover {
	background: #292524;
	border-color: #292524;
	color: #fff;
}
.footer-btn-secondary {
	background: transparent;
	color: #1c1917;
	border: 1.5px solid #1c1917;
}
.footer-btn-secondary:hover {
	background: #1c1917;
	color: var(--accent);
}

/* --- Kolone (Product / Company / Support) --- */
.foot-col h4 {
	margin: 0 0 18px;
	font-family: 'Fraunces', Georgia, serif;
	font-optical-sizing: auto;
	font-size: 22px;
	font-weight: 600;
	font-style: italic;
	color: #1c1917;
	letter-spacing: -0.01em;
}
.foot-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.foot-col li {
	margin-bottom: 12px;
	font-size: 15px;
	color: #1c1917;
	line-height: 1.5;
}
.foot-col a {
	color: #1c1917;
	text-decoration: none;
	transition: opacity 0.15s;
}
.foot-col a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

/* --- Veliki tipografski logo na dnu --- */
.footer-bigtype {
	font-family: 'Fraunces', Georgia, serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-size: clamp(60px, 13vw, 200px);
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #1c1917;
	text-align: left;
	margin: 24px 0 32px;
	overflow: hidden;
	white-space: nowrap;
}

/* --- Copyright + made_in row --- */
.footer-fineprint {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(28, 25, 23, 0.2);
	font-size: 13px;
	color: #44403c;
}
.footer-fineprint-left,
.footer-fineprint-right {
	font-size: 13px;
}

/* --- Mobile responsive --- */
@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
		margin-bottom: 48px;
	}
	.footer-ctas {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.footer-btn {
		flex: 1 1 auto;
		min-width: 140px;
		text-align: center;
	}
	.footer-bigtype {
		font-size: clamp(48px, 18vw, 120px);
	}
}
@media (max-width: 560px) {
	.site-footer { padding: 48px 0 24px; }
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.footer-ctas {
		flex-direction: column;
		width: 100%;
	}
	.footer-btn { width: 100%; }
	.footer-fineprint {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Legacy aliasi - stari foot-* selektori (ako negde ostane) */
.foot-bottom {
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid #44403c;
	font-size: 12px;
	color: #78716c;
	text-align: center;
}

/* Checkout-specific */
.checkout {
	max-width: 540px;
	margin: 0 auto;
	padding: 50px 24px;
}
.checkout-summary {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 26px;
}
.checkout-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	font-size: 14px;
}
.checkout-summary-row.total {
	border-top: 1px solid var(--line);
	margin-top: 8px;
	padding-top: 14px;
	font-weight: 700;
	font-size: 16px;
}
.checkout-form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px 28px;
}
.field { margin-bottom: 16px; }
.field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ink-2);
}
.field input, .field select {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--line-2);
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
}
.field input:focus, .field select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(194,65,12,0.15);
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.field .required { color: var(--accent); }
.notice {
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 13px;
	margin-bottom: 18px;
}
.notice-info { background: #eff6ff; border-left: 3px solid #2563eb; color: #1e3a8a; }
.notice-error { background: #fef2f2; border-left: 3px solid #b91c1c; color: #7f1d1d; }
.notice-success { background: #f0fdf4; border-left: 3px solid #15803d; color: #14532d; }

.success-box {
	text-align: center;
	padding: 50px 24px;
	max-width: 600px;
	margin: 0 auto;
}
.success-icon {
	font-size: 64px;
	line-height: 1;
	margin-bottom: 18px;
}
.success-box h1 { font-size: 32px; margin: 0 0 14px; }
.success-box .key-box {
	background: var(--accent-bg);
	border: 2px dashed #d97706;
	padding: 22px;
	border-radius: 10px;
	margin: 26px 0;
}
.success-box .key {
	font-family: ui-monospace, Menlo, "Roboto Mono", monospace;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	word-break: break-all;
	user-select: all;
}

/* === Mobile nav: hamburger + slide-out drawer === */

/* Hamburger button — hidden on desktop, visible on mobile */
.nav .nav-toggle {
	display: none !important;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}
.nav-toggle-bar {
	display: block;
	position: absolute;
	left: 9px;
	right: 9px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle-bar:nth-child(1) { top: 13px; }
.nav-toggle-bar:nth-child(2) { top: 19px; }
.nav-toggle-bar:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Drawer close button — hidden on desktop, visible inside drawer on mobile */
.nav .nav-drawer-close {
	display: none !important;
	background: transparent;
	border: 0;
	padding: 8px;
	cursor: pointer;
	color: var(--ink-2);
	position: absolute;
	top: 14px;
	right: 14px;
}
.nav-drawer-close:hover { color: var(--accent); }

/* Mobile-only heading inside drawer (above language list) */
.nav .lang-mobile-heading { display: none !important; }

/* Overlay behind drawer when open */
.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(28, 25, 23, 0.4);
	z-index: 998;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.nav-overlay.is-open { display: block; opacity: 1; }

/* Mobile responsive: <= 800px */
@media (max-width: 800px) {
	.hero h1 { font-size: 32px; }
	.hero-sub { font-size: 16px; }
	.features { grid-template-columns: 1fr; }
	.pricing { grid-template-columns: 1fr; }
	.tier.popular { transform: none; }
	section { padding: 50px 0; }
	.field-row { grid-template-columns: 1fr; }

	/* Show hamburger button */
	.nav .nav-toggle { display: block !important; }

	/* Show drawer close button */
	.nav .nav-drawer-close { display: block !important; }

	/* Drawer = right-side panel, slides in from right */
	.nav-links {
		display: flex !important; /* override the [hidden] attribute */
		flex-direction: column;
		align-items: stretch;
		gap: 0;

		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 88%;
		max-width: 360px;

		background: var(--paper);
		box-shadow: -10px 0 40px rgba(28, 25, 23, 0.18);
		z-index: 999;

		padding: 64px 24px 32px;
		overflow-y: auto;

		transform: translateX(100%);
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	}
	.nav-links.is-open { transform: translateX(0); }

	/* Drawer is rendered but transformed off-screen — keep accessible */
	.nav-links[hidden] { display: flex !important; }

	/* Nav items inside drawer — full width, larger touch targets */
	.nav-links > a[data-nav-link] {
		display: block;
		padding: 14px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
		font-weight: 500;
		color: var(--ink);
		border-radius: 0;
	}
	.nav-links > a[data-nav-link]:hover {
		color: var(--accent);
		background: transparent;
	}
	.nav-links > a[data-nav-link]::after { display: none; }

	/* Mobile drawer CTA — full width, prominent at bottom */
	.nav-cta {
		display: flex !important;
		justify-content: center;
		margin: 22px 0 0 !important;
		padding: 14px 18px !important;
		font-size: 15px !important;
		width: 100%;
		border-radius: 9px !important;
	}
	.nav-cta::after { display: none; }

	/* Language section heading in drawer */
	.nav .lang-mobile-heading {
		display: block !important;
		margin: 18px 0 10px;
		font: 700 11px/1 inherit;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		color: var(--ink-3);
	}

	/* In mobile drawer, hide desktop dropdown toggle */
	.lang-selector { margin-left: 0; }
	.lang-toggle { display: none; }

	/* In mobile drawer, language menu is always visible (no dropdown) */
	.lang-menu {
		display: block !important;
		position: static;
		box-shadow: none;
		border: 1px solid var(--line);
		border-radius: 8px;
		min-width: 0;
		max-width: 100%;
		padding: 4px 0;
	}
	.lang-menu li a { padding: 12px 14px; font-size: 15px; }
	.lang-menu .lang-short { min-width: 36px; font-size: 12px; }
	.lang-menu .lang-name { font-size: 15px; }
}

/* === Comparison table — desktop wide, mobile horizontal scroll === */
.cmp-section {
	padding: 80px 0;
	background: var(--paper);
}
.cmp-scroll-hint {
	display: none;
	text-align: center;
	font-size: 12px;
	color: var(--ink-3);
	margin-bottom: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
}
.cmp-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 12px;
	background: var(--paper);
	scrollbar-width: thin;
}
.cmp-wrap::-webkit-scrollbar { height: 8px; }
.cmp-wrap::-webkit-scrollbar-track { background: var(--cream); border-radius: 4px; }
.cmp-wrap::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.cmp-wrap::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }

.cmp-table {
	width: 100%;
	min-width: 880px;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 14px;
}

/* Header row */
.cmp-table thead th {
	background: var(--cream);
	padding: 18px 14px;
	text-align: center;
	font-weight: 500;
	color: var(--ink-2);
	border-bottom: 2px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 2;
}
.cmp-feat-head {
	min-width: 240px;
	text-align: left !important;
	background: var(--paper) !important;
}
.cmp-tier-head .cmp-tier-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}
.cmp-tier-head .cmp-tier-price {
	font-size: 13px;
	color: var(--ink-2);
	font-weight: 600;
}
.cmp-tier-head.is-popular {
	background: rgba(194, 65, 12, 0.06);
	border-bottom-color: var(--accent);
	color: var(--accent);
}
.cmp-tier-head.is-popular .cmp-tier-name,
.cmp-tier-head.is-popular .cmp-tier-price { color: var(--accent); }

/* Group divider row */
.cmp-group td {
	background: var(--cream);
	padding: 14px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-3);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

/* Feature row (label column) */
.cmp-feat {
	padding: 14px 18px;
	font-weight: 500;
	color: var(--ink);
	text-align: left;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	white-space: normal;
}

/* Cells */
.cmp-cell {
	padding: 14px 12px;
	text-align: center;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}
.cmp-cell.is-popular { background: rgba(194, 65, 12, 0.03); }

.cmp-yes {
	color: var(--accent);
}
.cmp-yes svg {
	display: inline-block;
	vertical-align: middle;
}
.cmp-no {
	color: var(--ink-3);
	opacity: 0.5;
	font-size: 18px;
	font-weight: 300;
}
.cmp-text {
	font-weight: 600;
	color: var(--ink);
	font-size: 13.5px;
}

/* CTA row */
.cmp-cta-row td { padding: 24px 12px; text-align: center; border-top: 2px solid var(--line); background: var(--paper); }
.cmp-cta-row .cmp-cta-cell.is-popular { background: rgba(194, 65, 12, 0.03); }
.cmp-cta-row .btn-sm {
	padding: 8px 16px;
	font-size: 13px;
	min-width: 100px;
}

/* Free tier pricing card — distinct visual */
.tier.tier-free .tier-price-free {
	color: var(--ink);
	font-weight: 800;
}

/* Mobile: show scroll hint, smaller table */
@media (max-width: 800px) {
	.cmp-section { padding: 50px 0; }
	.cmp-scroll-hint { display: block; }
	.cmp-table { min-width: 720px; font-size: 13px; }
	.cmp-feat-head { min-width: 200px; }
	.cmp-feat { padding: 12px 14px; }
	.cmp-cell { padding: 12px 10px; }
	.cmp-group td { padding: 12px 14px; }
	.cmp-tier-head { padding: 14px 10px; }
	.cmp-tier-head .cmp-tier-name { font-size: 13.5px; }
	.cmp-tier-head .cmp-tier-price { font-size: 12px; }
	.cmp-cta-row .btn-sm { padding: 7px 12px; font-size: 12px; min-width: 80px; }
}

/* === Signup-free page === */
.signup-section {
	padding: 60px 0 100px;
}
.signup-container {
	max-width: 920px;
}
.signup-form-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}
.signup-head {
	grid-column: 1 / -1;
	text-align: center;
	margin-bottom: 32px;
}
.signup-badge {
	display: inline-block;
	background: rgba(194, 65, 12, 0.1);
	color: var(--accent);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 14px;
}
.signup-head h1 {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
}
.signup-head p {
	font-size: 17px;
	color: var(--ink-2);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.5;
}

.signup-form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 32px;
}
.signup-form .form-field { margin-bottom: 18px; }
.signup-form .form-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
}
.signup-form .req { color: var(--accent); }
.signup-form .opt { color: var(--ink-3); font-weight: 400; font-size: 12px; margin-left: 4px; }
.signup-form input[type="email"],
.signup-form input[type="text"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 15px;
	background: var(--paper);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.signup-form input[type="email"]:focus,
.signup-form input[type="text"]:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
}
.signup-form .form-checkbox {
	margin-bottom: 14px;
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--ink-2);
}
.signup-form .form-checkbox label {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	cursor: pointer;
}
.signup-form .form-checkbox input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 2px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--accent);
}
.signup-form .form-checkbox a {
	color: var(--accent);
	text-decoration: underline;
}
.signup-form-note {
	margin: 18px 0 0;
	font-size: 12px;
	color: var(--ink-3);
	text-align: center;
}

.signup-error {
	display: flex;
	gap: 10px;
	align-items: center;
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 18px;
	font-size: 14px;
}

.signup-sidebar {
	background: var(--cream);
	padding: 28px;
	border-radius: 12px;
	border: 1px solid var(--line);
}
.signup-sidebar h3 {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-3);
}
.signup-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.signup-sidebar li {
	padding: 10px 0;
	font-size: 14.5px;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 10px;
	align-items: center;
}
.signup-sidebar li::before {
	content: "✓";
	color: var(--accent);
	font-weight: 700;
	flex-shrink: 0;
}
.signup-sidebar li:last-child { border-bottom: 0; }
.signup-sidebar-upgrade {
	margin: 0;
	font-size: 13px;
	color: var(--ink-2);
}
.signup-sidebar-upgrade a {
	display: block;
	margin-top: 6px;
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
}

/* Success state */
.signup-success {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}
.signup-success-icon {
	color: #16a34a;
	margin-bottom: 18px;
}
.signup-success h1 {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 14px;
	letter-spacing: -0.02em;
}
.signup-success-lead {
	font-size: 17px;
	color: var(--ink-2);
	margin: 0 0 28px;
}
.signup-success-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 24px 28px;
	margin-bottom: 22px;
	text-align: left;
}
.signup-success-card h3 {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ink-3);
}
.signup-success-card ol {
	margin: 0;
	padding-left: 22px;
}
.signup-success-card li {
	padding: 6px 0;
	color: var(--ink);
	font-size: 14.5px;
}
.signup-success-note {
	font-size: 13px;
	color: var(--ink-3);
	margin: 0 0 8px;
}
.signup-success-ref {
	font-family: ui-monospace, Menlo, monospace;
	font-size: 12px;
	color: var(--ink-3);
	margin: 0 0 28px;
}
.signup-success-actions {
	margin-top: 24px;
}

/* Mobile */
@media (max-width: 800px) {
	.signup-section { padding: 32px 0 60px; }
	.signup-form-wrap {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.signup-form { padding: 24px; }
	.signup-head h1 { font-size: 28px; }
	.signup-head p { font-size: 15px; }
	.signup-success h1 { font-size: 26px; }
}

/* ===========================================
   USE CASE SHORTCUTS (ispod hero CTA-a)
   =========================================== */

.hero-usecases {
	margin-top: 22px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.hero-usecases-label {
	color: #78716c;
	font-weight: 500;
	margin-right: 4px;
}

.hero-usecase-pill {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: rgba(28, 25, 23, 0.04);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: 20px;
	color: #1c1917;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.15s;
}

.hero-usecase-pill:hover {
	background: rgba(194, 65, 12, 0.08);
	border-color: rgba(194, 65, 12, 0.25);
	color: #c2410c;
	transform: translateY(-1px);
}

/* ===========================================
   DEMO VIDEO SECTION
   =========================================== */

#demo-video {
	padding: 60px 0;
	background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
	color: #f5f1ea;
}

#demo-video .section-head h2 { color: #f5f1ea; }
#demo-video .section-head p { color: #d6d3d1; }

.video-wrap {
	max-width: 880px;
	margin: 40px auto 0;
}

.video-embed {
	position: relative;
	padding-bottom: 56.25%;  /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
}

.video-placeholder {
	background: rgba(255,255,255,0.04);
	border: 2px dashed rgba(255,255,255,0.15);
	border-radius: 12px;
	padding: 60px 40px;
	text-align: center;
	color: #d6d3d1;
}

.video-placeholder-icon {
	display: inline-flex;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: rgba(194,65,12,0.15);
	color: #fb923c;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.video-placeholder h3 {
	color: #f5f1ea;
	font-size: 20px;
	margin: 0 0 8px;
	font-weight: 600;
}

.video-placeholder p {
	color: #a8a29e;
	max-width: 460px;
	margin: 0 auto 24px;
	font-size: 14px;
	line-height: 1.6;
}

/* ===========================================
   COMPARISON VS COMPETITION
   =========================================== */

.cmp-competition {
	padding: 60px 0;
	background: #fafaf9;
}

.cmp-competition-wrap {
	max-width: 920px;
	margin: 0 auto;
	overflow-x: auto;
}

.cmp-competition-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	font-size: 14px;
}

.cmp-competition-table th,
.cmp-competition-table td {
	padding: 14px 16px;
	text-align: center;
	border-bottom: 1px solid #f5f5f4;
}

.cmp-competition-table th:first-child,
.cmp-competition-table td:first-child {
	text-align: left;
	color: #44403c;
	font-weight: 500;
}

.cmp-competition-table thead th {
	background: #292524;
	color: #f5f1ea;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding-top: 18px;
	padding-bottom: 18px;
}

.cmp-competition-table th.cmp-us,
.cmp-competition-table td.cmp-us {
	background: rgba(194,65,12,0.08);
	border-left: 1px solid rgba(194,65,12,0.2);
	border-right: 1px solid rgba(194,65,12,0.2);
	font-weight: 600;
}

.cmp-competition-table thead th.cmp-us {
	background: #c2410c;
	color: #fff;
}

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

.cmp-competition-table tbody tr:hover {
	background: #fefce8;
}

/* ===========================================
   USE CASE PAGE LAYOUT (shared template)
   =========================================== */

.uc-hero {
	padding: 80px 0 60px;
	background: linear-gradient(180deg, #fef3c7 0%, #fdf6e3 100%);
}

.uc-hero-badge {
	display: inline-block;
	padding: 6px 14px;
	background: #fff;
	border: 1px solid rgba(28,25,23,0.1);
	border-radius: 20px;
	font-size: 12px;
	color: #44403c;
	margin-bottom: 20px;
	font-weight: 500;
}

.uc-hero h1 {
	font-size: 38px;
	line-height: 1.15;
	margin: 0 0 18px;
	color: #1c1917;
	max-width: 720px;
}

.uc-hero h1 .accent {
	color: #c2410c;
	display: block;
}

.uc-hero-sub {
	max-width: 700px;
	font-size: 17px;
	line-height: 1.6;
	color: #44403c;
	margin: 0 0 28px;
}

.uc-hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.uc-section {
	padding: 60px 0;
}

.uc-section.alt {
	background: #fafaf9;
}

.uc-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.uc-card {
	background: #fff;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 26px 24px;
	transition: all 0.2s;
}

.uc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
	border-color: rgba(194,65,12,0.3);
}

.uc-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(194,65,12,0.1);
	color: #c2410c;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 22px;
}

.uc-card h3 {
	font-size: 17px;
	margin: 0 0 10px;
	color: #1c1917;
	font-weight: 600;
}

.uc-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #57534e;
}

.uc-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-top: 40px;
}

.uc-stat {
	background: #fff;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 28px 24px;
	text-align: center;
}

.uc-stat-value {
	font-size: 36px;
	font-weight: 800;
	color: #c2410c;
	margin: 0 0 8px;
	line-height: 1;
}

.uc-stat-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #78716c;
	margin-bottom: 12px;
}

.uc-stat-text {
	font-size: 13px;
	line-height: 1.5;
	color: #57534e;
}

.uc-final-cta {
	background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
	color: #f5f1ea;
	padding: 60px 0;
	text-align: center;
}

.uc-final-cta h2 {
	color: #f5f1ea;
	font-size: 28px;
	margin: 0 0 12px;
}

.uc-final-cta p {
	color: #d6d3d1;
	margin: 0 0 28px;
	font-size: 16px;
}

@media (max-width: 720px) {
	.uc-hero h1 { font-size: 28px; }
	.uc-hero-sub { font-size: 15px; }
	.cmp-competition-table { font-size: 12px; }
	.cmp-competition-table th,
	.cmp-competition-table td { padding: 10px 6px; }
}

/* ===========================================
   NAV DROPDOWN (Solutions menu)
   =========================================== */

.nav-dropdown {
	position: relative;
	display: inline-block;
}

.nav-dropdown-toggle {
	background: transparent;
	border: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	padding: 8px 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	border-radius: 6px;
	transition: background 0.15s;
}

.nav-dropdown-toggle:hover {
	background: rgba(28, 25, 23, 0.05);
}

.nav-dropdown-toggle svg {
	transition: transform 0.2s;
}

.nav-dropdown[aria-expanded="true"] .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
	transform: rotate(180deg);
}

.nav-dropdown-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	min-width: 320px;
	background: #fff;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0,0,0,0.12);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-8px);
	transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
	z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[aria-expanded="true"] .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 8px;
	text-decoration: none;
	color: #1c1917;
	transition: background 0.12s;
}

.nav-dropdown-item:hover {
	background: rgba(194, 65, 12, 0.06);
}

.nav-dropdown-emoji {
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.nav-dropdown-title {
	font-weight: 600;
	font-size: 14.5px;
	color: #1c1917;
	margin-bottom: 2px;
}

.nav-dropdown-desc {
	font-size: 12.5px;
	color: #78716c;
	line-height: 1.4;
}

/* Mobile: dropdown postaje inline flat list */
@media (max-width: 800px) {
	.nav-dropdown {
		display: block;
		width: 100%;
	}
	.nav-dropdown-toggle {
		display: block;
		width: 100%;
		text-align: left;
		font-weight: 600;
		font-size: 12px;
		text-transform: uppercase;
		color: #78716c;
		letter-spacing: 0.06em;
		padding: 12px 0 4px;
		cursor: default;
		pointer-events: none;
	}
	.nav-dropdown-toggle svg { display: none; }
	.nav-dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		padding: 0;
		min-width: 0;
		background: transparent;
	}
	.nav-dropdown-item {
		padding: 10px 0;
		border-radius: 0;
	}
	.nav-dropdown-emoji { font-size: 18px; }
}

/* ===========================================
   BREADCRUMB (use case pages)
   =========================================== */

.uc-breadcrumb {
	background: #fafaf9;
	border-bottom: 1px solid #f5f5f4;
	padding: 12px 0;
	font-size: 13px;
}

.uc-breadcrumb a {
	color: #78716c;
	text-decoration: none;
	transition: color 0.15s;
}

.uc-breadcrumb a:hover {
	color: #c2410c;
}

.uc-breadcrumb-sep {
	margin: 0 8px;
	color: #d6d3d1;
}

.uc-breadcrumb-current {
	color: #1c1917;
	font-weight: 500;
}

/* ===========================================
   CROSS-LINK (na dnu use case stranica)
   =========================================== */

.uc-crosslink {
	padding: 50px 0;
	background: #fafaf9;
	border-top: 1px solid #f5f5f4;
}

.uc-crosslink-head {
	text-align: center;
	margin-bottom: 32px;
}

.uc-crosslink-head h2 {
	font-size: 22px;
	color: #1c1917;
	margin: 0 0 8px;
}

.uc-crosslink-head p {
	color: #57534e;
	font-size: 14.5px;
	margin: 0;
}

.uc-crosslink-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	max-width: 720px;
	margin: 0 auto;
}

.uc-crosslink-card {
	display: block;
	background: #fff;
	border: 1px solid #e7e5e4;
	border-radius: 12px;
	padding: 22px 22px 20px;
	text-decoration: none;
	color: inherit;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}

.uc-crosslink-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(194,65,12,0) 0%, rgba(194,65,12,0.04) 100%);
	opacity: 0;
	transition: opacity 0.2s;
}

.uc-crosslink-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.08);
	border-color: rgba(194,65,12,0.3);
}

.uc-crosslink-card:hover::before {
	opacity: 1;
}

.uc-crosslink-emoji {
	font-size: 28px;
	margin-bottom: 10px;
	position: relative;
}

.uc-crosslink-name {
	font-size: 16px;
	font-weight: 700;
	color: #1c1917;
	margin-bottom: 4px;
	position: relative;
}

.uc-crosslink-desc {
	font-size: 13px;
	color: #57534e;
	line-height: 1.4;
	margin-bottom: 12px;
	position: relative;
}

.uc-crosslink-arrow {
	font-size: 18px;
	color: #c2410c;
	font-weight: 600;
	transition: transform 0.2s;
	position: relative;
}

.uc-crosslink-card:hover .uc-crosslink-arrow {
	transform: translateX(4px);
}


/* ============================================================
   USE CASE PAGES V3 — Blinq-tier redesign
   Prefix: .ucv3-*
   Scoped to body.uc-page so it does not affect /buy/ index.
   ============================================================ */

:root {
	--ucv3-paper: #f5f0e8;
	--ucv3-paper-2: #ebe5d9;
	--ucv3-cream: #faf6ee;
	--ucv3-ink: #1a1815;
	--ucv3-ink-2: #4a453d;
	--ucv3-ink-3: #8a8479;
	--ucv3-accent: #c2410c;
	--ucv3-accent-h: #9a3412;
	--ucv3-accent-soft: #ffe4d1;
	--ucv3-coral: #f26854;
	--ucv3-coral-h: #df5340;
	--ucv3-line: #d9d2c4;
	--ucv3-ok: #2d6f4a;
	--ucv3-card: #ffffff;
	--ucv3-shadow: 0 1px 2px rgba(26,24,21,.04), 0 8px 24px rgba(26,24,21,.06);
	--ucv3-shadow-lg: 0 4px 12px rgba(26,24,21,.06), 0 24px 60px rgba(26,24,21,.12);
}

body.uc-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--ucv3-paper);
	color: var(--ucv3-ink);
}
body.uc-page .ucv3-serif { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; letter-spacing: -0.01em; }

/* =====================================================================
   MAIN PAGE FONT — Hotfix 13
   Primenjuje Inter (body) + Fraunces (naslovi) na glavnu /buy/ stranicu,
   da izgleda konzistentno sa use case stranicama (freelancer/sales/agency).
   Scoped na body.main-page da ne utiče na ostale stranice.
   ===================================================================== */
body.main-page {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
body.main-page .hero h1,
body.main-page .section-head h2,
body.main-page .pricing h2,
body.main-page .comparison h2,
body.main-page .faq h2 {
	font-family: 'Fraunces', Georgia, serif;
	font-optical-sizing: auto;
	letter-spacing: -0.02em;
	font-weight: 500;
}
body.main-page .hero h1 .accent {
	font-style: italic;
	font-weight: 400;
}
/* Nav, dugmad i drugi UI elementi ostaju Inter */
body.main-page .nav,
body.main-page .btn,
body.main-page button {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
/* Container padding 10% (umesto 5%) samo na glavnoj stranici - Hotfix 14 */
@media (min-width: 801px) {
	body.main-page .container {
		padding: 0 10%;
	}
}

/* Breadcrumb */
.ucv3-bc { padding: 24px 0 12px; font-size: 13.5px; color: var(--ucv3-ink-3); }
.ucv3-bc a { color: var(--ucv3-ink-2); text-decoration: none; }
.ucv3-bc a:hover { color: var(--ucv3-accent); }
.ucv3-bc-sep { margin: 0 8px; opacity: .5; }

/* Section head */
.ucv3-section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.ucv3-section-eyebrow { font-size: 13px; color: var(--ucv3-accent); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.ucv3-eyebrow-light { color: #f4b896 !important; }
.ucv3-section-head h2 { font-size: 44px; line-height: 1.1; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--ucv3-ink); }
.ucv3-section-head p { font-size: 18px; color: var(--ucv3-ink-2); line-height: 1.55; }

/* Buttons */
.ucv3-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-family: inherit; font-size: 15.5px; font-weight: 500; cursor: pointer; text-decoration: none; transition: transform .15s, background .15s, color .15s; border: 0; }
.ucv3-btn:hover { transform: translateY(-1px); }
.ucv3-btn-primary { background: var(--ucv3-coral); color: #fff !important; }
.ucv3-btn-primary:hover { background: var(--ucv3-coral-h); color: #fff !important; }
.ucv3-btn-dark { background: var(--ucv3-ink); color: #fff !important; }
.ucv3-btn-ghost { background: transparent; color: var(--ucv3-ink); border: 1.5px solid var(--ucv3-ink); }
.ucv3-btn-ghost:hover { background: var(--ucv3-ink); color: #fff !important; }
.ucv3-btn-lg { padding: 16px 30px; font-size: 16px; }

/* HERO */
.ucv3-hero { padding: 40px 0 96px; }
.ucv3-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.ucv3-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--ucv3-accent-soft); color: var(--ucv3-accent-h); padding: 6px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em; margin-bottom: 28px; }
.ucv3-hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--ucv3-accent); border-radius: 50%; }
.ucv3-hero h1 { font-size: 62px; line-height: 1.04; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 24px; color: var(--ucv3-ink); }
.ucv3-hero h1 .em { font-style: italic; font-weight: 400; }
.ucv3-hero h1 .accent { color: var(--ucv3-accent); }
.ucv3-hero-sub { font-size: 19px; line-height: 1.55; color: var(--ucv3-ink-2); margin-bottom: 36px; max-width: 540px; }
.ucv3-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.ucv3-hero-trust { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ucv3-ink-3); }
.ucv3-hero-trust-dots { display: flex; }
.ucv3-hero-trust-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--ucv3-paper); margin-left: -8px; }
.ucv3-hero-trust-dot:first-child { margin-left: 0; }

/* PHONE MOCKUP */
.ucv3-hero-visual { position: relative; aspect-ratio: 4/5; }
.ucv3-phone-bg { position: absolute; inset: 0; background: var(--ucv3-paper-2); border-radius: 32px; transform: rotate(-3deg); }
.ucv3-phone { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 280px; height: 560px; background: var(--ucv3-ink); border-radius: 44px; padding: 12px; box-shadow: var(--ucv3-shadow-lg); }
.ucv3-phone-screen { width: 100%; height: 100%; background: #fff; border-radius: 32px; overflow: hidden; position: relative; padding: 28px 22px; display: flex; flex-direction: column; align-items: center; }
.ucv3-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 80px; height: 18px; background: var(--ucv3-ink); border-radius: 999px; }
.ucv3-qr-frame { width: 180px; height: 180px; margin-top: 18px; background: #fff; border: 1px solid var(--ucv3-line); border-radius: 12px; padding: 14px; position: relative; }
.ucv3-qr-svg { width: 100%; height: 100%; }
.ucv3-qr-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; background: var(--ucv3-ink); color: #fff; border-radius: 8px; border: 3px solid #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 12px; letter-spacing: -0.02em; }
.ucv3-card-info { margin-top: 28px; text-align: center; width: 100%; }
.ucv3-card-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #f4b896, #c2410c); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 500; font-size: 22px; }
.ucv3-card-name { font-size: 17px; font-weight: 600; color: var(--ucv3-ink); margin-bottom: 2px; }
.ucv3-card-role { font-size: 12.5px; color: var(--ucv3-ink-3); margin-bottom: 18px; }
.ucv3-card-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.ucv3-card-btn { padding: 10px; border-radius: 10px; background: var(--ucv3-paper); font-size: 12.5px; color: var(--ucv3-ink-2); display: flex; align-items: center; justify-content: center; gap: 6px; }
.ucv3-card-btn-primary { background: var(--ucv3-ink); color: #fff; }

/* PILLARS */
.ucv3-pillars { padding: 80px 0; background: var(--ucv3-cream); border-top: 1px solid var(--ucv3-line); border-bottom: 1px solid var(--ucv3-line); }
.ucv3-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.ucv3-pillar { background: var(--ucv3-card); padding: 36px; border-radius: 20px; border: 1px solid var(--ucv3-line); }
.ucv3-pillar-icon { width: 56px; height: 56px; background: var(--ucv3-ink); color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.ucv3-pillar h3 { font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.2; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; color: var(--ucv3-ink); }
.ucv3-pillar p { color: var(--ucv3-ink-2); line-height: 1.6; font-size: 15.5px; }
.ucv3-pillar-tag { display: inline-block; margin-top: 16px; background: var(--ucv3-accent-soft); color: var(--ucv3-accent-h); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }

/* CALCULATOR */
.ucv3-calc { padding: 96px 0; }
.ucv3-calc-wrap { max-width: 1080px; margin: 0 auto; background: var(--ucv3-ink); color: #fff; border-radius: 28px; padding: 56px 48px; overflow: hidden; position: relative; }
.ucv3-calc-wrap h2 { color: #fff; font-family: 'Fraunces', serif; font-size: 40px; line-height: 1.15; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 12px; max-width: 700px; }
.ucv3-calc-wrap h2 .em { font-style: italic; }
.ucv3-calc-lead { color: #c4bdb0; font-size: 17px; margin-bottom: 40px; max-width: 600px; }
.ucv3-calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ucv3-calc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 28px; }
.ucv3-calc-win { background: var(--ucv3-accent); border-color: var(--ucv3-accent); }
.ucv3-calc-label { font-size: 13px; color: #8a8479; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.ucv3-calc-win .ucv3-calc-label { color: var(--ucv3-accent-soft); }
.ucv3-calc-brand { font-size: 28px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; }
.ucv3-calc-pricing { font-size: 14px; color: #c4bdb0; margin-bottom: 24px; }
.ucv3-calc-win .ucv3-calc-pricing { color: rgba(255,255,255,.85); }
.ucv3-calc-total { display: flex; align-items: baseline; gap: 6px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.ucv3-calc-win .ucv3-calc-total { border-top-color: rgba(255,255,255,.25); }
.ucv3-calc-total-num { font-size: 48px; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.ucv3-calc-total-suffix { font-size: 13px; color: #c4bdb0; }
.ucv3-calc-win .ucv3-calc-total-suffix { color: rgba(255,255,255,.9); }
.ucv3-calc-savings { margin-top: 32px; padding: 20px 24px; background: rgba(242,104,84,.12); border: 1px solid rgba(242,104,84,.3); border-radius: 14px; display: flex; align-items: center; gap: 16px; }
.ucv3-calc-savings-icon { width: 40px; height: 40px; background: var(--ucv3-coral); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ucv3-calc-savings-text { font-size: 15.5px; color: #fff; }
.ucv3-calc-savings-text strong { color: var(--ucv3-coral); font-weight: 600; }
.ucv3-calc-foot { margin-top: 24px; font-size: 12.5px; color: #8a8479; }

/* COMPARISON TABLE */
.ucv3-compare-table { padding: 96px 0; }
.ucv3-cmp-wrap { max-width: 1080px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--ucv3-line); background: var(--ucv3-card); }
.ucv3-cmp { width: 100%; border-collapse: collapse; }
.ucv3-cmp thead th { padding: 28px 20px; text-align: left; font-weight: 600; font-size: 14px; background: var(--ucv3-paper); border-bottom: 1px solid var(--ucv3-line); }
.ucv3-cmp thead th:first-child { background: var(--ucv3-paper); width: 32%; }
.ucv3-cmp thead th.ucv3-win { background: var(--ucv3-ink); color: #fff; position: relative; }
.ucv3-cmp thead th.ucv3-win::after { content: 'Preporučeno'; position: absolute; top: -1px; right: 12px; background: var(--ucv3-accent); color: #fff; font-size: 10.5px; padding: 3px 8px; border-radius: 0 0 6px 6px; letter-spacing: 0.04em; }
.ucv3-cmp .ucv3-col-head { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 4px; display: block; }
.ucv3-cmp .ucv3-col-sub { font-size: 12.5px; color: var(--ucv3-ink-3); font-weight: 400; }
.ucv3-cmp thead th.ucv3-win .ucv3-col-sub { color: #c4bdb0; }
.ucv3-cmp tbody tr { border-bottom: 1px solid var(--ucv3-line); }
.ucv3-cmp tbody tr:last-child { border-bottom: 0; }
.ucv3-cmp tbody td { padding: 18px 20px; font-size: 15px; vertical-align: top; }
.ucv3-cmp tbody td:first-child { font-weight: 500; color: var(--ucv3-ink); background: var(--ucv3-cream); }
.ucv3-cmp td.ucv3-win { background: rgba(194,65,12,.04); }
.ucv3-cmp .yes { color: var(--ucv3-ok); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.ucv3-cmp .no { color: var(--ucv3-ink-3); display: inline-flex; align-items: center; gap: 6px; }
.ucv3-cmp .partial { color: var(--ucv3-accent); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.ucv3-cmp .ucv3-price-row td { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; background: var(--ucv3-cream); }
.ucv3-cmp .ucv3-price-row td.ucv3-win { background: var(--ucv3-ink); color: #fff; }
.ucv3-cmp .ucv3-price-row td:first-child { font-family: inherit; font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ucv3-ink-3); }
.ucv3-cmp-foot { padding: 24px 28px; font-size: 12.5px; color: var(--ucv3-ink-3); background: var(--ucv3-paper); border-top: 1px solid var(--ucv3-line); }
.ucv3-cmp .ico-sm { width: 16px; height: 16px; flex-shrink: 0; }

/* PROBLEM */
.ucv3-problem { padding: 96px 0; background: var(--ucv3-cream); border-top: 1px solid var(--ucv3-line); border-bottom: 1px solid var(--ucv3-line); }
.ucv3-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ucv3-line); border-radius: 16px; overflow: hidden; }
.ucv3-stat { background: var(--ucv3-card); padding: 36px 28px; text-align: center; }
.ucv3-stat-value { font-size: 56px; line-height: 1; font-weight: 500; color: var(--ucv3-accent); margin-bottom: 12px; letter-spacing: -0.02em; }
.ucv3-stat-label { font-size: 15px; color: var(--ucv3-ink-2); line-height: 1.5; max-width: 280px; margin: 0 auto; }
.ucv3-stat-source { display: block; font-size: 12px; color: var(--ucv3-ink-3); margin-top: 8px; }

/* BENEFITS */
.ucv3-benefits { padding: 96px 0; }
.ucv3-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.ucv3-benefit { background: var(--ucv3-card); padding: 36px; border-radius: 20px; border: 1px solid var(--ucv3-line); transition: transform .2s, box-shadow .2s; }
.ucv3-benefit:hover { transform: translateY(-2px); box-shadow: var(--ucv3-shadow); }
.ucv3-benefit-icon { width: 48px; height: 48px; background: var(--ucv3-accent-soft); color: var(--ucv3-accent-h); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ucv3-benefit h3 { font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.2; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; color: var(--ucv3-ink); }
.ucv3-benefit p { color: var(--ucv3-ink-2); line-height: 1.6; font-size: 15.5px; }

/* HOW */
.ucv3-how { padding: 96px 0; background: var(--ucv3-cream); border-top: 1px solid var(--ucv3-line); }
.ucv3-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1080px; margin: 0 auto; position: relative; }
.ucv3-how-grid::before { content: ''; position: absolute; top: 22px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(to right, transparent, var(--ucv3-line) 20%, var(--ucv3-line) 80%, transparent); z-index: 0; }
.ucv3-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.ucv3-step-num { width: 44px; height: 44px; background: var(--ucv3-cream); color: var(--ucv3-ink); border: 1px solid var(--ucv3-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; margin: 0 auto 20px; }
.ucv3-step-num-active { background: var(--ucv3-ink); color: #fff; border-color: var(--ucv3-ink); }
.ucv3-step h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--ucv3-ink); }
.ucv3-step p { font-size: 14.5px; color: var(--ucv3-ink-2); line-height: 1.55; }

/* FEATURES (dark) */
.ucv3-features { padding: 96px 0; background: var(--ucv3-ink); color: #fff; }
.ucv3-features .ucv3-section-head h2 { color: #fff; }
.ucv3-features .ucv3-section-head p { color: #c4bdb0; }
.ucv3-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 56px; max-width: 920px; margin: 0 auto; }
.ucv3-feature-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #2c2925; font-size: 16px; align-items: flex-start; }
.ucv3-feature-check { flex-shrink: 0; width: 24px; height: 24px; background: var(--ucv3-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ucv3-features-foot { max-width: 920px; margin: 40px auto 0; padding: 24px 28px; background: rgba(242,104,84,.1); border: 1px solid rgba(242,104,84,.3); border-radius: 14px; display: flex; align-items: center; gap: 16px; }
.ucv3-features-foot-icon { width: 40px; height: 40px; background: var(--ucv3-coral); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ucv3-features-foot p { font-size: 15.5px; line-height: 1.55; color: #fff; }
.ucv3-features-foot strong { color: var(--ucv3-coral); font-weight: 600; }

/* SCENARIOS */
.ucv3-scenarios { padding: 96px 0; }
.ucv3-sc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.ucv3-sc-card { background: var(--ucv3-card); border: 1px solid var(--ucv3-line); border-radius: 20px; overflow: hidden; }
.ucv3-sc-img { aspect-ratio: 4/3; background: var(--ucv3-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--ucv3-accent-h); }
.ucv3-sc-body { padding: 28px; }
.ucv3-sc-body h4 { font-size: 22px; font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; color: var(--ucv3-ink); }
.ucv3-sc-body p { color: var(--ucv3-ink-2); font-size: 15px; line-height: 1.6; }

/* PLAN */
.ucv3-plan { padding: 96px 0; background: var(--ucv3-cream); border-top: 1px solid var(--ucv3-line); }
.ucv3-plan-card { max-width: 720px; margin: 0 auto; background: var(--ucv3-card); border: 2px solid var(--ucv3-ink); border-radius: 24px; padding: 48px; position: relative; overflow: hidden; }
.ucv3-plan-tag { position: absolute; top: 32px; right: 32px; background: var(--ucv3-accent-soft); color: var(--ucv3-accent-h); padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; }
.ucv3-plan-name { font-size: 15px; color: var(--ucv3-ink-3); font-weight: 500; margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase; }
.ucv3-plan-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.ucv3-plan-price { font-family: 'Fraunces', serif; font-size: 64px; font-weight: 500; line-height: 1; letter-spacing: -0.03em; color: var(--ucv3-ink); }
.ucv3-plan-price-suffix { font-size: 15px; color: var(--ucv3-ink-3); }
.ucv3-plan-sub { font-size: 17px; color: var(--ucv3-ink-2); margin-bottom: 32px; }
.ucv3-plan-features { list-style: none; margin-bottom: 32px; padding: 0; }
.ucv3-plan-features li { display: flex; gap: 12px; padding: 10px 0; font-size: 15.5px; align-items: flex-start; }
.ucv3-plan-check { flex-shrink: 0; color: var(--ucv3-ok); margin-top: 3px; }
.ucv3-plan-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* FAQ — 2 columns, single-open */
.ucv3-faq { padding: 96px 0; }
.ucv3-faq-list { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.ucv3-faq-item { background: var(--ucv3-paper-2); border-radius: 16px; overflow: hidden; transition: background .2s; }
.ucv3-faq-item:hover { background: #e2dac9; }
.ucv3-faq-q { width: 100%; background: none; border: 0; cursor: pointer; padding: 26px 28px; display: flex; justify-content: space-between; align-items: center; font-family: inherit; font-size: 17px; font-weight: 500; color: var(--ucv3-ink); text-align: left; gap: 20px; line-height: 1.4; }
.ucv3-faq-q-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: var(--ucv3-cream); display: flex; align-items: center; justify-content: center; transition: transform .25s, background .15s, color .15s; color: var(--ucv3-ink); }
.ucv3-faq-item:hover .ucv3-faq-q-icon { background: #f5ecd9; }
.ucv3-faq-item.ucv3-faq-open .ucv3-faq-q-icon { transform: rotate(180deg); background: var(--ucv3-ink); color: #fff; }
.ucv3-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease-out; }
.ucv3-faq-item.ucv3-faq-open .ucv3-faq-a { max-height: 800px; }
.ucv3-faq-a-inner { padding: 0 28px 28px; font-size: 15.5px; line-height: 1.7; color: var(--ucv3-ink-2); }

/* CROSS-LINK */
.ucv3-crosslink { padding: 96px 0; background: var(--ucv3-cream); border-top: 1px solid var(--ucv3-line); }
.ucv3-cl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.ucv3-cl-card { background: var(--ucv3-card); border: 1px solid var(--ucv3-line); border-radius: 20px; padding: 32px; text-decoration: none; color: inherit; display: flex; gap: 20px; align-items: flex-start; transition: transform .15s, box-shadow .15s, border-color .15s; }
.ucv3-cl-card:hover { transform: translateY(-2px); box-shadow: var(--ucv3-shadow); border-color: var(--ucv3-accent); }
.ucv3-cl-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--ucv3-accent-soft); color: var(--ucv3-accent-h); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.ucv3-cl-body { flex: 1; }
.ucv3-cl-name { font-size: 13px; font-weight: 600; color: var(--ucv3-accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.ucv3-cl-title { font-size: 20px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.01em; color: var(--ucv3-ink); }
.ucv3-cl-arrow { font-size: 14px; color: var(--ucv3-ink-3); margin-top: 8px; }

/* FINAL CTA */
.ucv3-final-cta { padding: 120px 0; background: var(--ucv3-ink); color: #fff; text-align: center; }
.ucv3-final-cta h2 { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1.1; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 20px; max-width: 760px; margin-left: auto; margin-right: auto; color: #fff; }
.ucv3-final-cta h2 .em { font-style: italic; }
.ucv3-final-cta p { font-size: 19px; color: #c4bdb0; margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto; }
.ucv3-final-cta .ucv3-btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.ucv3-final-cta .ucv3-btn-ghost:hover { background: #fff; color: var(--ucv3-ink) !important; border-color: #fff; }
.ucv3-final-cta-foot { margin-top: 32px; font-size: 13.5px; color: #8a8479; }

/* ICON */
.ucv3-features .ico,
.ucv3-pillar-icon .ico-lg,
.ucv3-benefit-icon .ico-lg,
.ucv3-cl-icon .ico-lg,
.ucv3-card-actions .ico { width: 20px; height: 20px; stroke-width: 2; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ucv3-features .ico, .ucv3-card-actions .ico { width: 14px; height: 14px; }
.ucv3-feature-check svg { width: 14px; height: 14px; stroke-width: 2.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
	.ucv3-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.ucv3-hero h1 { font-size: 44px; }
	.ucv3-hero-visual { max-width: 360px; margin: 0 auto; }
	.ucv3-pillars-grid, .ucv3-benefits-grid, .ucv3-cl-grid, .ucv3-features-grid, .ucv3-calc-grid, .ucv3-faq-list { grid-template-columns: 1fr; }
	.ucv3-how-grid, .ucv3-sc-grid, .ucv3-stat-row { grid-template-columns: 1fr; gap: 16px; }
	.ucv3-how-grid::before { display: none; }
	.ucv3-section-head h2, .ucv3-final-cta h2, .ucv3-calc-wrap h2 { font-size: 32px; }
	.ucv3-plan-card, .ucv3-calc-wrap { padding: 32px 24px; }
	.ucv3-plan-price, .ucv3-calc-total-num { font-size: 48px; }
	.ucv3-cmp tbody td { padding: 12px 14px; font-size: 13.5px; }
	.ucv3-cmp thead th { padding: 16px 14px; font-size: 13px; }
	.ucv3-faq-q { padding: 20px 22px; font-size: 16px; }
	.ucv3-faq-a-inner { padding: 0 22px 22px; }
}


/* ============================================================
   USE CASE PAGES V3 — LAYOUT FIX
   Overrides postojeci .container koji ima max-width:none
   pa se sadrzaj prelivao preko cele sirine.
   Korisnikov zahtev: full width sa 10% padding levo/desno.
   ============================================================ */

body.uc-page .container {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 auto !important;
	padding-left: 10% !important;
	padding-right: 10% !important;
	box-sizing: border-box !important;
}

/* Tablet, smanji padding da sadrzaj ne bude pretesan */
@media (max-width: 1400px) {
	body.uc-page .container {
		padding-left: 6% !important;
		padding-right: 6% !important;
	}
}

@media (max-width: 1024px) {
	body.uc-page .container {
		padding-left: 4% !important;
		padding-right: 4% !important;
	}
}

/* Mobile, fiksni padding */
@media (max-width: 768px) {
	body.uc-page .container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

/* Box-sizing safety za ucv3 elemente (samo, ne za ceo body da se ne dira nav) */
body.uc-page [class*="ucv3-"] {
	box-sizing: border-box;
}

/* Plan card safety, overflow + max-width respect */
body.uc-page .ucv3-plan-card {
	width: 100%;
	max-width: 720px;
	overflow: hidden;
}
body.uc-page .ucv3-plan-features,
body.uc-page .ucv3-plan-features li {
	width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Calc i compare wrap-ovi, da ne prelivanju van containera */
body.uc-page .ucv3-calc-wrap,
body.uc-page .ucv3-cmp-wrap {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
}

/* Comparison table, na uzem ekranu da bude scrollable */
body.uc-page .ucv3-cmp-wrap {
	overflow-x: auto;
}
body.uc-page .ucv3-cmp {
	min-width: 720px;
}

/* Phone visual z-index safety */
body.uc-page .ucv3-hero-visual {
	isolation: isolate;
	max-width: 480px;
	margin-left: auto;
}
body.uc-page .ucv3-phone-bg {
	z-index: 0;
}
body.uc-page .ucv3-phone {
	z-index: 1;
}

/* Hero grid, ne presirok ako je viewport ogroman */
body.uc-page .ucv3-hero-grid {
	max-width: 1280px;
	margin: 0 auto;
}

/* Section heads, max-width ostaje 760px ali centrirano */
body.uc-page .ucv3-section-head {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

/* Pillars, benefits, scenarios, cross-link grids max-width */
body.uc-page .ucv3-pillars-grid,
body.uc-page .ucv3-benefits-grid,
body.uc-page .ucv3-sc-grid,
body.uc-page .ucv3-cl-grid,
body.uc-page .ucv3-how-grid {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

/* Stat row, max-width za fluid layout */
body.uc-page .ucv3-stat-row {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

/* FAQ list, max-width */
body.uc-page .ucv3-faq-list {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

/* Features grid, max-width */
body.uc-page .ucv3-features-grid {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

/* Final CTA i Calculator wrap konzistentno */
body.uc-page .ucv3-final-cta h2,
body.uc-page .ucv3-final-cta p {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

/* Hero h1, smanji na mobilnom */
@media (max-width: 768px) {
	body.uc-page .ucv3-hero h1 { font-size: 36px; }
	body.uc-page .ucv3-section-head h2 { font-size: 28px; }
	body.uc-page .ucv3-final-cta h2 { font-size: 32px; }
	body.uc-page .ucv3-plan-price { font-size: 48px; }
	body.uc-page .ucv3-calc-total-num { font-size: 36px; }
}

/* Word breaking, dugacki engleski terms na uzem ekranu */
body.uc-page .ucv3-pillar h3,
body.uc-page .ucv3-benefit h3,
body.uc-page .ucv3-sc-body h4,
body.uc-page .ucv3-faq-q,
body.uc-page .ucv3-cmp tbody td {
	word-wrap: break-word;
	overflow-wrap: break-word;
}



/* ============================================================
   NAV HEADER — GARANTOVANO uniforman svuda (h27)
   ============================================================ */

.nav {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.nav .nav-inner,
body.main-page .nav .nav-inner,
body.uc-page .nav .nav-inner,
body.inner-page .nav .nav-inner {
	padding-top: 22px !important;
	padding-bottom: 22px !important;
	padding-left: 10% !important;
	padding-right: 10% !important;
}

@media (max-width: 1100px) {
	.nav .nav-inner,
	body.main-page .nav .nav-inner,
	body.uc-page .nav .nav-inner,
	body.inner-page .nav .nav-inner {
		padding-left: 5% !important;
		padding-right: 5% !important;
	}
}

@media (max-width: 768px) {
	.nav .nav-inner,
	body.main-page .nav .nav-inner,
	body.uc-page .nav .nav-inner,
	body.inner-page .nav .nav-inner {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

.nav-brand,
.nav-links > a[data-nav-link],
.nav-cta,
.nav-dropdown-toggle,
.lang-toggle,
.lang-menu li a {
	font-family: inherit !important;
}

.nav-brand,
.nav-links > a[data-nav-link],
.nav-cta,
.nav-dropdown-toggle,
.lang-toggle {
	font-size: 14px !important;
}

.nav-brand {
	font-weight: 700 !important;
}
