/* ================================================
   TISKARNA MAJIC — main.css  v2.0
   Topla, svetla, kreativna estetika
   ================================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color .2s; }
strong { font-weight: 600; }

/* Skip link */
.skip-link { position: absolute; top: -9999px; left: 1rem; background: var(--accent); color: #fff; padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 1rem; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero-keywords { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── NAVIGACIJA ── */
#site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 5vw;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
#site-nav.scrolled { box-shadow: var(--shadow-md); }
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    letter-spacing: -.01em; text-transform: uppercase;
    color: var(--text); text-decoration: none;
    transition: color .2s; line-height: 1;
}
.logo span { color: var(--accent); }
.logo:hover { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
    color: var(--muted); font-size: .875rem; font-weight: 500;
    text-decoration: none; letter-spacing: .03em; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-btn {
    background: var(--accent); color: #fff !important;
    padding: .5rem 1.25rem; border-radius: 2rem;
    font-weight: 600 !important; font-size: .85rem;
    transition: background .2s, transform .18s !important;
    box-shadow: 0 3px 12px rgba(232,57,12,.3);
}
.nav-btn:hover { background: var(--accent-h) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .5rem; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--accent); }

/* Mobilni meni */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 150; flex-direction: column; align-items: center; justify-content: center; gap: 2.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 2.25rem; letter-spacing: .05em; color: var(--text); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 7rem 5vw 5rem; position: relative; overflow: hidden;
}
/* Toplo ozadje hero-ja */
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 65% 65% at 75% 45%, rgba(232,57,12,.09) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 15% 75%, rgba(245,166,35,.07) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 85% 85%, rgba(232,57,12,.05) 0%, transparent 50%);
}
/* Topla točkasta mreža */
.hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, rgba(28,21,16,.08) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    background: var(--accent-bg); border: 1px solid var(--accent-border);
    border-radius: 2rem; padding: .38rem 1.1rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

h1 {
    font-family: var(--font-head);
    font-size: clamp(4.5rem, 12vw, 10rem);
    line-height: .88; letter-spacing: .015em; margin-bottom: 1.75rem; color: var(--text);
}
h1 .outline {
    -webkit-text-stroke: 2px var(--accent);
    color: transparent; display: block;
}
h1 .red { color: var(--accent); }

.hero-sub {
    font-size: 1.15rem; font-weight: 300; color: var(--muted);
    max-width: 520px; margin-bottom: 2.75rem; line-height: 1.75;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-red {
    background: var(--accent); color: #fff;
    padding: .95rem 2.5rem; border-radius: 2rem;
    font-size: 1rem; font-weight: 600; text-decoration: none;
    transition: background .2s, transform .18s, box-shadow .18s;
    box-shadow: 0 4px 20px rgba(232,57,12,.32);
}
.btn-red:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,57,12,.38); }
.btn-outline {
    color: var(--text); font-size: .975rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid var(--border);
    padding: .9rem 1.75rem; border-radius: 2rem;
    transition: border-color .2s, color .2s, background .2s;
    background: var(--surface2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Scroll hint */
.hero-scroll { position: absolute; bottom: 2.5rem; left: 5vw; display: flex; align-items: center; gap: .75rem; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); z-index: 1; }
.scroll-line { width: 36px; height: 1.5px; background: var(--muted); }

/* Dekorativna oblika v hero */
.hero-deco {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(520px, 46vw);
    z-index: 0; pointer-events: none;
    overflow: hidden;
}
.hero-deco img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    mask-image: linear-gradient(to left, rgba(0,0,0,.95) 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.95) 40%, transparent 100%);
}

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; background: var(--dark); padding: .85rem 0; }
.marquee-track { display: flex; gap: 2.5rem; animation: marquee 24s linear infinite; white-space: nowrap; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-track span { font-family: var(--font-head); font-size: 1rem; letter-spacing: .12em; color: rgba(250,247,242,.35); }
.marquee-track .sep { color: var(--accent); opacity: .7; }

/* ── STATISTIKE ── */
.stats-row {
    display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
    background: var(--surface2); border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; padding: 1.75rem 2.5rem; flex: 1; min-width: 140px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.4rem; letter-spacing: .02em; color: var(--accent); display: block; line-height: 1; margin-bottom: .25rem; }
.stat-label { font-size: .8rem; color: var(--muted); font-weight: 400; letter-spacing: .04em; }
.stat-sep { display: none; }

/* ── SEKCIJE ── */
section { padding: 6rem 5vw; }
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark .section-label, .section-dark h3, .section-dark h4 { color: #faf7f2; }
.section-dark .section-intro, .section-dark p, .section-dark .stat-label { color: rgba(250,247,242,.6); }
.section-surface { background: var(--surface); }

.section-label {
    display: inline-block;
    font-size: .7rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--accent);
    background: var(--accent-bg); border: 1px solid var(--accent-border);
    padding: .25rem .75rem; border-radius: 2rem;
    margin-bottom: 1.25rem;
}
.section-dark .section-label { background: rgba(232,57,12,.15); }

h2 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: .92; letter-spacing: .025em; margin-bottom: 2.5rem; color: var(--text);
}
h3 { font-family: var(--font-head); font-weight: 400; }
.section-intro {
    font-size: 1.05rem; color: var(--muted); font-weight: 300;
    max-width: 580px; margin-bottom: 2.5rem; line-height: 1.75; margin-top: -1.5rem;
}

/* ── TEHNIKE ── */
.techniques { display: flex; flex-direction: column; gap: 3px; margin-top: 1rem; }
.technique {
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
}
.technique:hover { border-color: var(--accent-border); box-shadow: var(--shadow-md); }
.technique.open { border-color: var(--accent-border); box-shadow: var(--shadow-md); }

.technique-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.6rem 2rem; cursor: pointer; gap: 1rem;
    transition: background .2s;
}
.technique-header:hover { background: var(--accent-bg); }
.technique.open .technique-header { background: var(--accent-bg); }
.technique-header:focus { outline: 2px solid var(--accent); outline-offset: -2px; }

.tech-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.tech-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--accent); opacity: .3; line-height: 1; min-width: 2.25rem; }
.technique.open .tech-num { opacity: 1; }
.tech-name { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: .04em; color: var(--text); }
.tech-tag {
    font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    background: var(--surface); color: var(--muted); border: 1px solid var(--border);
    padding: .22rem .7rem; border-radius: 2rem;
}
.technique.open .tech-tag { background: var(--accent-bg); color: var(--accent); border-color: var(--accent-border); }
.tech-arrow { font-size: 1.4rem; color: var(--muted); transition: transform .3s, color .3s; flex-shrink: 0; line-height: 1; }
.technique.open .tech-arrow { transform: rotate(45deg); color: var(--accent); }

.technique-body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.technique.open .technique-body { max-height: 700px; }
.technique-inner { padding: 1.75rem 2rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; border-top: 1.5px solid var(--border); }
.technique-inner p { font-size: .95rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.technique-inner p strong { color: var(--text); font-weight: 600; }

.tech-specs { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.tech-specs li { display: flex; align-items: flex-start; gap: .65rem; font-size: .875rem; color: var(--muted); line-height: 1.5; }
.tech-specs li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: .42rem; }

.tech-cta {
    display: inline-flex; align-items: center; gap: .4rem;
    margin-top: 1.25rem; color: var(--accent); font-weight: 600; font-size: .9rem;
    text-decoration: none; transition: gap .2s;
}
.tech-cta:hover { gap: .65rem; }

/* ── USE CASES ── */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1rem; }
.usecase-card {
    background: rgba(250,247,242,.07); border: 1px solid rgba(250,247,242,.1);
    border-radius: var(--radius); padding: 1.75rem 1.5rem;
    transition: transform .2s, background .2s, border-color .2s;
}
.usecase-card:hover { transform: translateY(-3px); background: rgba(232,57,12,.08); border-color: rgba(232,57,12,.2); }
.uc-icon { font-size: 1.75rem; margin-bottom: .9rem; display: block; }
.usecase-card h3 { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .04em; margin-bottom: .55rem; line-height: 1.15; color: #faf7f2; }
.usecase-card p { font-size: .84rem; color: rgba(250,247,242,.55); font-weight: 300; line-height: 1.7; }
.usecase-card strong { color: rgba(250,247,242,.85); font-weight: 600; }

/* ── ZAKAJ MI ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1rem; }
.why-card {
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.75rem;
    transition: transform .2s, border-color .25s, box-shadow .25s;
    box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--accent-border); box-shadow: var(--shadow-md); }
.why-icon {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    background: var(--accent-bg); border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.2rem; letter-spacing: .04em; margin-bottom: .5rem; color: var(--text); }
.why-card p { font-size: .875rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ── POSTOPEK ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; position: relative; margin-top: 1rem; }
.process-steps::before { content:''; position:absolute; top:1.45rem; left:8%; right:8%; height:1.5px; background: linear-gradient(90deg, var(--accent-border), var(--accent-border)); z-index:0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 .5rem; }
.step-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg); border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.35rem; color: var(--accent);
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 6px var(--bg);
    transition: background .2s, color .2s;
}
.process-step:hover .step-circle { background: var(--accent); color: #fff; }
.process-step h4 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: .04em; margin-bottom: .4rem; color: var(--text); }
.process-step p { font-size: .8rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── CTA PASICA ── */
.cta-band {
    background: var(--accent);
    padding: 5rem 5vw; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: 'TISKARNA'; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
    font-family: var(--font-head); font-size: clamp(5rem, 15vw, 12rem); letter-spacing: .04em;
    color: rgba(255,255,255,.07); pointer-events: none; white-space: nowrap; line-height: 1;
}
.cta-band h2 { color: #fff; margin: 0; position: relative; }
.cta-band p { color: rgba(255,255,255,.82); font-weight: 300; max-width: 420px; margin-top: .6rem; position: relative; }
.btn-white {
    background: #fff; color: var(--accent);
    padding: .95rem 2.5rem; border-radius: 2rem; font-size: 1rem; font-weight: 700;
    text-decoration: none; white-space: nowrap; flex-shrink: 0;
    transition: transform .18s, box-shadow .18s; position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ── KONTAKT ── */
#kontakt { background: var(--surface); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.75; }
.contact-info > p strong { color: var(--text); }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.c-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--surface2); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.c-label { font-size: .75rem; color: var(--muted); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.c-value { font-size: .95rem; font-weight: 500; color: var(--text); margin-top: .1rem; }
.c-value a { color: var(--accent); text-decoration: none; }
.c-value a:hover { text-decoration: underline; }

/* Obrazec */
.form-card {
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: 1.5rem; padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--font-head); font-size: 1.8rem; letter-spacing: .04em; margin-bottom: 1.75rem; color: var(--text); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: .85rem 1rem;
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text);
    font-family: var(--font-body); font-size: .95rem;
    transition: border-color .2s, box-shadow .2s; resize: none;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.consent-row { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.consent-row input[type="checkbox"] { width: auto; flex-shrink: 0; margin-top: .25rem; accent-color: var(--accent); }
.consent-row label { font-size: .82rem; text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 300; line-height: 1.6; cursor: pointer; }
.consent-row label a { color: var(--accent); }
.form-error { background: rgba(232,57,12,.08); border: 1.5px solid var(--accent-border); border-radius: var(--radius-sm); padding: .75rem 1rem; font-size: .875rem; color: var(--accent); margin-bottom: 1rem; }
.form-submit {
    width: 100%; background: var(--accent); color: #fff; border: none;
    padding: 1rem; border-radius: 2rem; font-family: var(--font-body);
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: background .2s, transform .18s;
    box-shadow: 0 4px 16px rgba(232,57,12,.3);
}
.form-submit:hover { background: var(--accent-h); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-note { font-size: .75rem; color: var(--muted2); text-align: center; margin-top: .75rem; font-weight: 300; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; }
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-head); font-size: 1.75rem; margin-bottom: .5rem; color: var(--text); }
.form-success p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* Lokalni SEO opomba */
.contact-seo-note { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--accent-bg); border: 1px solid var(--accent-border); border-radius: var(--radius-sm); font-size: .875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.contact-seo-note strong { color: var(--text); font-weight: 600; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 3px; max-width: 900px; margin-top: 1rem; }
.faq-item { background: rgba(250,247,242,.06); border: 1px solid rgba(250,247,242,.1); border-radius: .75rem; overflow: hidden; transition: border-color .25s; }
.faq-item:hover { border-color: rgba(232,57,12,.3); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; cursor: pointer; gap: 1rem; font-weight: 500; font-size: .95rem; line-height: 1.4; color: rgba(250,247,242,.88); }
.faq-q:focus { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-icon { font-size: 1.2rem; color: rgba(250,247,242,.4); transition: transform .3s, color .3s; flex-shrink: 0; line-height: 1; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a.open { max-height: 500px; }
.faq-a p { padding: 0 1.5rem 1.2rem; font-size: .9rem; color: rgba(250,247,242,.55); line-height: 1.8; font-weight: 300; border-top: 1px solid rgba(250,247,242,.08); padding-top: 1rem; }
.faq-a strong { color: rgba(250,247,242,.88); font-weight: 600; }

/* ── FOOTER ── */
#site-footer {
    background: var(--dark2); border-top: 1px solid rgba(250,247,242,.08);
    padding: 4rem 5vw 2rem;
}
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.4rem; font-weight: 700; letter-spacing: -.01em; display: block; margin-bottom: 1rem; color: #faf7f2; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: .875rem; color: rgba(250,247,242,.45); font-weight: 300; line-height: 1.75; max-width: 280px; }
.footer-address { margin-top: .75rem !important; font-size: .8rem !important; color: rgba(250,247,242,.25) !important; }
.footer-col h4 { font-family: var(--font-head); font-size: 1rem; letter-spacing: .1em; color: rgba(250,247,242,.75); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { font-size: .85rem; color: rgba(250,247,242,.4); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-col ul li { font-size: .85rem; color: rgba(250,247,242,.4); }
.footer-bottom { border-top: 1px solid rgba(250,247,242,.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: rgba(250,247,242,.22); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(250,247,242,.22); text-decoration: none; transition: color .2s; cursor: pointer; }
.footer-legal a:hover { color: rgba(250,247,242,.55); }

/* ── MODALI ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(28,21,16,.75); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--surface2); border: 1.5px solid var(--border); border-radius: 1.5rem; max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 2.5rem; position: relative; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--surface); border: 1.5px solid var(--border); border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--text); transition: background .2s, color .2s; flex-shrink: 0; }
.modal-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.modal-box h3 { font-family: var(--font-head); font-size: 2rem; letter-spacing: .04em; margin-bottom: 1.5rem; color: var(--text); }
.modal-box h4 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: .04em; margin: 1.5rem 0 .5rem; color: var(--accent); }
.modal-box p { font-size: .875rem; color: var(--muted); line-height: 1.8; margin-bottom: .75rem; font-weight: 300; }
.modal-box ul { padding-left: 1.25rem; margin-bottom: .75rem; }
.modal-box ul li { font-size: .875rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.modal-box strong { color: var(--text); font-weight: 600; }

/* ── PIŠKOTKI PASICA ── */
#cookieBanner {
    position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 300;
    background: var(--surface2); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    box-shadow: var(--shadow-lg); max-width: 860px; margin: 0 auto;
}
#cookieBanner p { font-size: .875rem; color: var(--muted); font-weight: 300; max-width: 560px; }
#cookieBanner p a { color: var(--accent); }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }
#cookieAccept { background: var(--accent); color: #fff; border: none; padding: .6rem 1.5rem; border-radius: 2rem; font-family: var(--font-body); font-size: .875rem; font-weight: 700; cursor: pointer; transition: background .2s; }
#cookieAccept:hover { background: var(--accent-h); }
#cookieReject { background: transparent; color: var(--muted); border: 1.5px solid var(--border); padding: .6rem 1.25rem; border-radius: 2rem; font-family: var(--font-body); font-size: .875rem; cursor: pointer; transition: color .2s, border-color .2s; }
#cookieReject:hover { color: var(--text); border-color: var(--text); }

/* ── ANIMACIJE ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .hero-deco { width: min(360px, 38vw); }
    .usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-deco { display: none; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .cta-band { flex-direction: column; text-align: center; }
    section { padding: 4.5rem 5vw; }
    .stats-row { flex-wrap: wrap; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); flex-basis: 50%; }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}
@media (max-width: 640px) {
    h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
    h2 { font-size: clamp(2.2rem, 9vw, 3rem); }
    .why-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .usecase-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .technique-inner { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .form-card { padding: 1.5rem; }
    section { padding: 3.5rem 5vw; }
    .stat-item { flex-basis: 100%; border-right: none !important; }
    #cookieBanner { flex-direction: column; left: .5rem; right: .5rem; bottom: .5rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .marquee-track { animation: none; }
}

/* ── HERO SLIKA ── */
.hero-deco {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(520px, 46vw);
    z-index: 0; pointer-events: none; overflow: hidden;
}
.hero-deco img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
    display: block;
    filter: drop-shadow(-20px 0 40px rgba(250,247,242,.6));
}
.hero-deco::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, var(--bg) 0%, rgba(250,247,242,.15) 45%, transparent 100%);
}

/* ── LOGO — Space Grotesk ── */
.logo {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    text-transform: uppercase !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
}
.logo span { color: var(--accent) !important; font-weight: 700; }

/* Footer logo override */
#site-footer .logo {
    font-size: 1.35rem !important;
}

/* H1 hero — Space Grotesk */
.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: .9;
}
.hero h1 .outline {
    -webkit-text-stroke: 2.5px var(--accent);
    color: transparent;
    display: block;
}

@media (max-width: 960px) {
    .hero-deco { display: none; }
}
