/* Landing bazni layer — sve scopeano pod .lp-page da ne curi na ostatak appa.
   Override admin reseta iz site.css (html,body{height:100%;overflow:hidden}). */
html:has(.lp-page),
body:has(.lp-page) {
    height: auto;
    overflow: auto;
    display: block;
}

/* .lp-page base — merged with original body{} declarations */
.lp-page {
    box-sizing: border-box;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    min-height: 100vh;
    scroll-behavior: smooth;
    /* from original body{} */
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

.lp-page * {
    box-sizing: border-box;
}

/* ============================================================
   Naruči se — Landing page (scoped + tokenized)
   Original: Cool editorial system · teal accent on cool slate/white
   Fonts loaded via Google Fonts (Task 3); tokens in brand.css (Task 2).
   All selectors scoped under .lp-page to prevent leak.
   ============================================================ */

.lp-page img { max-width: 100%; display: block; }
.lp-page a { color: inherit; text-decoration: none; }

.lp-page .wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---- type ---- */
.lp-page .eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.lp-page .eyebrow .num { color: var(--muted); }
.lp-page .eyebrow.on-dark { color: #5fd3d9; }
.lp-page .eyebrow.on-dark .num { color: var(--dark-soft); }

.lp-page h1,
.lp-page h2,
.lp-page h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.lp-page .h-display { font-size: clamp(44px, 7vw, 92px); font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; }
.lp-page .h2 { font-size: clamp(30px, 4.2vw, 52px); }
.lp-page .h3 { font-size: clamp(21px, 2.4vw, 27px); letter-spacing: -0.015em; }
.lp-page .lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); line-height: 1.62; text-wrap: pretty; }
.lp-page .muted { color: var(--muted); }

/* ---- buttons ---- */
.lp-page .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 24px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.lp-page .btn:active { transform: translateY(1px); }
.lp-page .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px -10px rgba(13,138,150,.6); }
.lp-page .btn-primary:hover { background: var(--accent-deep); box-shadow: 0 14px 32px -10px rgba(13,138,150,.7); }
.lp-page .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.lp-page .btn-ghost:hover { border-color: var(--ink); background: rgba(13,27,34,.03); }
.lp-page .btn-light { background: var(--surface); color: var(--accent-deep); }
.lp-page .btn-light:hover { background: #eef7f7; }
.lp-page .btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.lp-page .btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.lp-page .btn .play { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: currentColor; flex: 0 0 auto; }
.lp-page .btn .play svg { display:block; }

/* ---- nav ---- */
.lp-page .site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.lp-page .site-nav.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.lp-page .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-page .brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.lp-page .brand .star { color: var(--accent); }
/* pravi logo (znak "Vrijeme", Graphics/logo) umjesto ranije CSS-nacrtanog placeholdera */
.lp-page .logo-mark { width: 30px; height: 30px; flex: 0 0 auto; background: url('/images/logo/znak.svg') center / contain no-repeat; }
.lp-page .footer .logo-mark { background-image: url('/images/logo/znak-za-tamnu-podlogu.svg'); }
.lp-page .nav-links { display: flex; gap: 30px; align-items: center; }
.lp-page .nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.lp-page .nav-links a:hover { color: var(--ink); }
.lp-page .nav-actions { display: flex; gap: 12px; align-items: center; }
.lp-page .nav-login { font-size: 15px; font-weight: 600; color: var(--ink-2); padding: 8px 6px; }
.lp-page .nav-login:hover { color: var(--ink); }
.lp-page .nav-toggle { display: none; }

/* ---- hero ---- */
.lp-page .hero { padding-top: clamp(40px, 7vw, 86px); padding-bottom: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.lp-page .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.lp-page .hero h1 { margin: 22px 0 24px; }
.lp-page .hero h1 .dim { color: var(--muted); }
.lp-page .hero .lede { max-width: 30em; }

/* ---- hero "0 €" vodeni žig (potpuno besplatna usluga) ----
   Živi u .hero-copy (lijeva kolona, kao pozadina naslova) — desna kolona je neproziran
   mockup pa bi žig preko cijele sekcije bio prekriven. z-index:-1 unutar
   hero-grid stacking konteksta drži ga iza teksta, a .hero overflow:hidden
   ga reže na rubu sekcije. */
.lp-page .hero-copy { position: relative; }
/* pomak udesno je min(150px, 10vw): na ~1500px punih 150px, sužavanjem ekrana
   proporcionalno pada pa se žig vraća ulijevo i ne bježi pod mockup */
.lp-page .hero-zero { position: absolute; left: calc(-6% + min(150px, 10vw)); right: calc(-6% - min(150px, 10vw)); top: -25%; bottom: 20%; display: flex; align-items: center; justify-content: center; perspective: 900px; pointer-events: none; user-select: none; z-index: -1; }
.lp-page .hero-zero-tilt { transform: rotateX(calc(55deg + var(--zero-tilt-x, 0deg))) rotateZ(calc(-10deg + var(--zero-tilt-z, 0deg))) translate(var(--zero-shift-x, 0px), var(--zero-shift-y, 0px)); transition: transform .25s ease-out; will-change: transform; }
.lp-page .hero-zero span { display: block; font-family: var(--font-display); font-weight: 800; font-size: 330px; letter-spacing: -0.04em; line-height: 1; color: var(--accent); opacity: .07; animation: zero-sway 6.5s ease-in-out infinite alternate; }
@keyframes zero-sway { from { transform: translateY(-24px) rotate(-3deg); } to { transform: translateY(24px) rotate(3deg); } }
.lp-page .hero-grid { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .lp-page .hero-zero span { animation: none; }
  .lp-page .hero-zero-tilt { transition: none; }
}

.lp-page .hero-cta { display: flex; gap: 14px; margin: 32px 0 20px; flex-wrap: wrap; }
.lp-page .hero-trust { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.lp-page .hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

/* hero product mockup — margin-top spušta mockup ispod razine naslova (responzivni
   blok na ≤980px postavlja margin: 0 auto pa mobilni prikaz ostaje netaknut) */
.lp-page .mock { position: relative; margin-top: 150px; }
.lp-page .browser {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(12,40,48,.4), 0 12px 28px -18px rgba(12,40,48,.28);
}
.lp-page .browser-bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.lp-page .browser-dots { display: flex; gap: 6px; }
.lp-page .browser-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); display: block; }
.lp-page .browser-url { flex: 1; height: 26px; border-radius: 7px; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; padding: 0 12px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); gap: 7px; }
.lp-page .browser-url .lock { width: 9px; height: 9px; border: 1.6px solid var(--accent); border-radius: 2px; flex:0 0 auto; }
.lp-page .browser-url b { color: var(--ink); font-weight: 400; }

/* salon page inside mock */
.lp-page .salon { padding: 20px; }
.lp-page .salon-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lp-page .salon-avatar { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(150deg, #14a3b0, var(--accent-deep)); flex:0 0 auto; display:grid; place-items:center; color:#fff; font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.lp-page .salon-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.lp-page .salon-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); }
.lp-page .salon-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.lp-page .tab { font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 20px; border: 1px solid var(--line); color: var(--ink-2); }
.lp-page .tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.lp-page .salon-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.lp-page .week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin-bottom: 14px; }
.lp-page .day { text-align: center; padding: 9px 0; border-radius: 10px; border: 1px solid var(--line); }
.lp-page .day .dow { font-family: var(--font-mono); font-size: 10px; color: var(--muted); text-transform: uppercase; }
.lp-page .day .dnum { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 2px; }
.lp-page .day.sel { background: var(--accent-soft); border-color: var(--accent); }
.lp-page .day.sel .dnum { color: var(--accent-deep); }
.lp-page .slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.lp-page .slot { text-align: center; font-family: var(--font-mono); font-size: 12.5px; padding: 9px 0; border-radius: 9px; border: 1px solid var(--line); color: var(--ink-2); }
.lp-page .slot.taken { color: var(--line-2); text-decoration: line-through; background: var(--surface-2); }
.lp-page .slot.pick { background: var(--accent); color: #fff; border-color: var(--accent); }

/* floating confirmation toast */
.lp-page .toast {
  position: absolute; right: -14px; bottom: 34px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 22px 50px -20px rgba(12,40,48,.45);
  animation: float 5s ease-in-out infinite;
}
.lp-page .toast .check { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); display:grid; place-items:center; flex:0 0 auto; }
.lp-page .toast .check svg { color: var(--accent-deep); }
.lp-page .toast .t-title { font-weight: 700; font-size: 14px; }
.lp-page .toast .t-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .lp-page .toast { animation: none; } }

/* ---- use-case strip ---- */
.lp-page .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.lp-page .strip-inner { padding: 26px 0; display: flex; align-items: center; gap: 18px 28px; flex-wrap: wrap; justify-content: center; }
.lp-page .strip-items { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-page .strip-items span { font-family: var(--font-display); font-weight: 600; font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-2); display: inline-flex; align-items: center; gap: 12px; }
.lp-page .strip-items span::before { content: "•"; color: var(--accent); }

/* ---- generic section ---- */
.lp-page .section { padding: clamp(64px, 9vw, 120px) 0; }
.lp-page .section-head { max-width: 720px; }
.lp-page .section-head .h2 { margin-top: 16px; }
.lp-page .section-head .lede { margin-top: 18px; }

/* ---- subpage (01) ---- */
.lp-page .subpage-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.lp-page .url-chip {
  display: inline-flex; align-items: center; gap: 2px; margin: 26px 0;
  border: 1.5px dashed var(--line-2); border-radius: 12px; padding: 13px 18px;
  font-family: var(--font-mono); font-size: clamp(14px,1.6vw,17px);
}
.lp-page .url-chip .base { color: var(--ink-2); }
.lp-page .url-chip .slug { color: var(--accent-deep); font-weight: 700; }
.lp-page .url-chip .caret { width: 1.5px; height: 1.1em; background: var(--accent); margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.lp-page .checklist { display: grid; gap: 13px; margin-top: 6px; }
.lp-page .checklist li { display: flex; align-items: center; gap: 12px; list-style: none; font-weight: 500; color: var(--ink-2); }
.lp-page .checklist .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; flex: 0 0 auto; }
.lp-page .checklist .ck svg { color: var(--accent-deep); }
.lp-page .subpage-mocks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lp-page .subpage-mocks .browser:nth-child(2) { transform: translateY(26px); }
.lp-page .mini-page { padding: 16px; }
.lp-page .mini-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lp-page .mini-avatar { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; }
.lp-page .mini-line { height: 9px; border-radius: 6px; background: var(--line); }
.lp-page .mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.lp-page .mini-card { height: 52px; border-radius: 9px; border: 1px solid var(--line); background: var(--surface-2); }

/* ---- audience (02 / dark) ---- */
.lp-page .section.dark { background: var(--dark); color: #fff; }
.lp-page .section.dark .lede { color: var(--dark-soft); }
.lp-page .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.lp-page .cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--dark-line); aspect-ratio: 4 / 3; min-height: 200px;
  background: var(--dark-2);
}
.lp-page .cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-page .cat-card img { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.lp-page .cat-card:hover img { transform: scale(1.05); }
.lp-page .cat-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(8,18,23,.88) 0%, rgba(8,18,23,.25) 55%, rgba(8,18,23,.05) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.lp-page .cat-num { position: absolute; top: 18px; left: 20px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.65); }
.lp-page .cat-card h3 { color: #fff; font-size: 24px; }
.lp-page .cat-card .cat-sub { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ---- how (03) timeline ---- */
.lp-page .timeline { margin-top: 54px; border-top: 1px solid var(--line); }
.lp-page .step { display: grid; grid-template-columns: 92px 1.1fr 1.4fr; gap: clamp(16px,3vw,40px); align-items: start; padding: 32px 0; border-bottom: 1px solid var(--line); }
.lp-page .step-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,4vw,46px); color: var(--accent); line-height: 1; }
.lp-page .step h3, .lp-page .proc-copy h3 { padding-top: 4px; }
.lp-page .step .step-body, .lp-page .proc-copy .step-body { color: var(--ink-2); padding-top: 5px; max-width: 42ch; }
.lp-page .how-note {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--accent-soft-2); border: 1px solid var(--accent-soft); border-radius: 14px;
  padding: 16px 22px; font-weight: 600; color: var(--accent-ink);
}
.lp-page .how-note .pill { font-family: var(--font-mono); font-weight: 400; font-size: 13px; background: var(--surface); border: 1px solid var(--accent-soft); border-radius: 8px; padding: 5px 10px; }

/* ---- features ---- */
.lp-page .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.lp-page .feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-page .feature:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px rgba(12,40,48,.4); border-color: var(--line-2); }
.lp-page .feature .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; }
.lp-page .feature .ico svg { color: var(--accent-deep); }
.lp-page .feature h3 { font-size: 20px; margin-bottom: 9px; }
.lp-page .feature p { color: var(--ink-2); margin: 0; font-size: 15.5px; }

/* ---- pricing ---- */
.lp-page .pricing-single { display: flex; justify-content: center; margin-top: 52px; }
.lp-page .pricing-single .plan { max-width: 460px; width: 100%; }
.lp-page .plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column;
}
.lp-page .plan.featured { border: 1.5px solid var(--accent); box-shadow: 0 30px 60px -34px rgba(13,138,150,.55); position: relative; }
.lp-page .plan-tag { position: absolute; top: -13px; left: 30px; background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.lp-page .plan .plan-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; }
.lp-page .plan .plan-desc { color: var(--muted); font-size: 14.5px; margin: 4px 0 18px; }
.lp-page .plan .price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 22px; }
.lp-page .plan .price .amt { font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -0.03em; }
.lp-page .plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.lp-page .plan li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--ink-2); }
.lp-page .plan li .ck { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.lp-page .plan .btn { margin-top: auto; }
.lp-page .pricing-fine { text-align: center; margin-top: 22px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }

/* ---- faq ---- */
.lp-page .faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(32px,5vw,64px); }
.lp-page .faq-list { border-top: 1px solid var(--line); }
.lp-page .faq-item { border-bottom: 1px solid var(--line); }
.lp-page .faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-display); font-weight: 600; font-size: clamp(18px,2vw,22px); }
.lp-page .faq-item summary::-webkit-details-marker { display: none; }
.lp-page .faq-item .sign { width: 26px; height: 26px; flex: 0 0 auto; position: relative; }
.lp-page .faq-item .sign::before,
.lp-page .faq-item .sign::after { content:""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease; }
.lp-page .faq-item .sign::before { left: 4px; right: 4px; top: 12px; height: 2px; }
.lp-page .faq-item .sign::after { top: 4px; bottom: 4px; left: 12px; width: 2px; }
.lp-page .faq-item[open] .sign::after { transform: scaleY(0); }
.lp-page .faq-answer { padding: 0 4px 26px; color: var(--ink-2); max-width: 60ch; }
.lp-page .faq-item[open] summary { color: var(--accent-deep); }

/* ---- cta ---- */
.lp-page .cta-box {
  background: linear-gradient(150deg, var(--dark-2), var(--dark)); color: #fff;
  border-radius: 26px; padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px,4vw,56px); align-items: center;
  position: relative; overflow: hidden;
}
.lp-page .cta-box::after { content:""; position: absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(20,163,176,.4), transparent 65%); }
.lp-page .cta-box h2 { color: #fff; position: relative; }
.lp-page .cta-box .lede { color: rgba(255,255,255,.85); }
.lp-page .cta-box .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; position: relative; }
.lp-page .cta-box .cta-actions .btn { width: 100%; }
.lp-page .cta-box .cta-url { font-family: var(--font-mono); font-size: 13px; color: var(--dark-soft); }

/* ---- footer ---- */
.lp-page .footer { background: var(--dark); color: var(--dark-soft); padding: clamp(48px,7vw,80px) 0 36px; }
.lp-page .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.lp-page .footer .brand { color: #fff; margin-bottom: 14px; }
.lp-page .footer .f-about { max-width: 28ch; font-size: 15px; }
.lp-page .footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 400; }
.lp-page .footer-col a { display: block; padding: 6px 0; font-size: 15px; color: var(--dark-soft); transition: color .15s; }
.lp-page .footer-col a:hover { color: #fff; }
.lp-page .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--dark-line); font-family: var(--font-mono); font-size: 12.5px; }

/* ---- reveal animation ----
   Content visible by DEFAULT. .js rules removed — .js class is never set on
   this static no-JS page, so those selectors were dead. */
@media (prefers-reduced-motion: reduce) { .lp-page { scroll-behavior: auto; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .lp-page .hero-grid { grid-template-columns: 1fr; }
  /* fiksnih 330px bi progutalo uski ekran — na mobitelu se žig skalira sa širinom */
  .lp-page .hero-zero span { font-size: clamp(180px, 60vw, 330px); }
  .lp-page .mock { max-width: 540px; margin: 0 auto; }
  .lp-page .subpage-grid { grid-template-columns: 1fr; }
  .lp-page .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-page .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-page .faq-grid { grid-template-columns: 1fr; }
  .lp-page .cta-box { grid-template-columns: 1fr; }
  .lp-page .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lp-page .step { grid-template-columns: 64px 1fr; }
  .lp-page .step .step-body, .lp-page .proc-copy .step-body { grid-column: 2; max-width: none; }
}
@media (max-width: 940px) {
  .lp-page .nav-links { display: none; }
  .lp-page .nav-login { display: none; }
}
@media (max-width: 620px) {
  .lp-page { font-size: 16px; }
  .lp-page .audience-grid { grid-template-columns: 1fr; }
  .lp-page .features-grid { grid-template-columns: 1fr; }
  .lp-page .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-page .subpage-mocks .browser:nth-child(2) { transform: none; }
  .lp-page .strip-inner { gap: 14px; }
  .lp-page .toast { right: 8px; bottom: 16px; transform: scale(.92); }
  .lp-page .hero-cta .btn { flex: 1; }
}

/* ===================== Proces mockups (za-partnere) =====================
   Vizualni jezik = pravo sučelje: sive prugice zauzeto, narančaste prugice
   čeka potvrdu, puni teal potvrđeno. Sve pod .lp-page scopeom. */
.lp-page .lpm-card, .lp-page .lpm-mail {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(10, 40, 44, .10); overflow: hidden;
  font-size: 13.5px; max-width: 420px; width: 100%;
}
.lp-page .lpm-card-head {
  padding: 10px 14px; font-weight: 700; border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.lp-page .lpm-card-foot { padding: 8px 14px; color: var(--accent-deep); font-weight: 600; border-top: 1px dashed var(--line); }
.lp-page .lpm-price-row {
  display: flex; gap: 10px; align-items: baseline; padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}
.lp-page .lpm-price-row span:first-child { flex: 1; font-weight: 600; }
.lp-page .lpm-dim { color: #7a8a8c; font-size: 12px; }
.lp-page .lpm-sched { padding: 6px 10px; }
.lp-page .lpm-hour { display: flex; align-items: stretch; gap: 8px; min-height: 34px; border-top: 1px dashed var(--line); padding: 3px 0; }
.lp-page .lpm-hour:first-child { border-top: 0; }
.lp-page .lpm-hour > span { width: 24px; color: #7a8a8c; font-size: 11px; padding-top: 4px; }
.lp-page .lpm-appt { flex: 1; border-radius: 6px; padding: 5px 9px; font-weight: 600; font-size: 12px; display: flex; align-items: center; }
.lp-page .lpm-slot-free { flex: 1; }
.lp-page .lpm-busy { background: repeating-linear-gradient(45deg, #e9ecef, #e9ecef 6px, #dee2e6 6px, #dee2e6 12px); color: #5b6b6d; }
.lp-page .lpm-wait { background: repeating-linear-gradient(45deg, #f6c343, #f6c343 6px, #ffd976 6px, #ffd976 12px); color: #3a2e00; }
.lp-page .lpm-own { background: #0d8a96; color: #fff; }
.lp-page .lpm-legend { display: flex; gap: 14px; padding: 8px 14px; border-top: 1px solid var(--line); font-size: 11.5px; color: #5b6b6d; }
.lp-page .lpm-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.lp-page .lpm-legend .lpm-dot-busy { background: repeating-linear-gradient(45deg, #e9ecef, #e9ecef 3px, #dee2e6 3px, #dee2e6 6px); }
.lp-page .lpm-legend .lpm-dot-wait { background: repeating-linear-gradient(45deg, #f6c343, #f6c343 3px, #ffd976 3px, #ffd976 6px); }
.lp-page .lpm-legend .lpm-dot-own { background: #0d8a96; }
.lp-page .lpm-mail-subj { padding: 10px 14px; font-weight: 700; background: var(--surface); border-bottom: 1px solid var(--line); }
.lp-page .lpm-mail-brand { display: flex; align-items: center; gap: 8px; padding: 12px 14px 4px; font-weight: 700; }
.lp-page .lpm-mail-logo {
  width: 26px; height: 26px; border-radius: 50%; background: #0d8a96; color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}
.lp-page .lpm-mail-status { margin: 8px 14px; padding: 7px 10px; border-radius: 8px; background: #1d9f4e; color: #fff; font-weight: 700; font-size: 12.5px; }
.lp-page .lpm-mail-body { padding: 6px 14px 12px; }
.lp-page .lpm-mail-row { display: flex; gap: 10px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.lp-page .lpm-mail-row > span { width: 64px; color: #7a8a8c; font-size: 11.5px; padding-top: 1px; }
.lp-page .lpm-mail-row > em { font-style: normal; font-weight: 600; flex: 1; }
.lp-page .lpm-mail-taken { color: #7a8a8c; font-weight: 500; }
.lp-page .lpm-mail-new > em { color: #0d6570; }
.lp-page .lpm-mail-actions { display: flex; gap: 10px; padding-top: 10px; }
.lp-page .lpm-btn-ok, .lp-page .lpm-btn-no { padding: 7px 14px; border-radius: 8px; font-weight: 700; font-size: 12.5px; color: #fff; }
.lp-page .lpm-btn-ok { background: #1d9f4e; }
.lp-page .lpm-btn-no { background: #c73a3a; }

/* Proces: naizmjenično tekst/vizual; mobitel stack. */
.lp-page .proc-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
  padding: 26px 0; border-top: 1px dashed var(--line);
}
.lp-page .section-head + .proc-step { border-top: 0; }
.lp-page .proc-flip .proc-copy { order: 2; }
.lp-page .proc-flip .proc-visual { order: 1; justify-self: start; }
.lp-page .proc-visual { justify-self: end; }
@media (max-width: 760px) {
  .lp-page .proc-step { grid-template-columns: 1fr; gap: 14px; }
  .lp-page .proc-flip .proc-copy { order: 1; }
  .lp-page .proc-flip .proc-visual { order: 2; }
  .lp-page .proc-visual { justify-self: stretch; }
}

/* Kontakt forma (u tamnom cta-boxu). */
/* Kontakt koristi cta-box ekskluzivno: 1 stupac (h2 / lede / forma svaki u svom redu),
   inače 1.4fr/1fr grid gura formu u pola širine s praznom ćelijom. */
.lp-page #kontakt .cta-box { grid-template-columns: 1fr; }
.lp-page .kontakt-form { margin-top: 22px; text-align: left; }
.lp-page .kf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.lp-page .kf-wide { grid-column: 1 / -1; }
.lp-page .kf-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 5px; opacity: .85; }
.lp-page .kf-field input, .lp-page .kf-field textarea {
  width: 100%; padding: 10px 12px; border-radius: 9px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10); color: inherit; font: inherit;
}
.lp-page .kf-field input:focus, .lp-page .kf-field textarea:focus { outline: 2px solid rgba(255,255,255,.45); }
.lp-page .kf-field .validation-message { display: block; margin-top: 4px; font-size: 12px; color: #ffd0d0; }
.lp-page .kf-error { margin-top: 12px; color: #ffd0d0; font-weight: 600; }
.lp-page .kf-error a { color: inherit; text-decoration: underline; }
.lp-page .kontakt-form .btn { margin-top: 16px; }
/* Honeypot: vizualno nepostojeći, ali NE display:none (neki botovi to preskaču). */
.lp-page .kf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Mobitel: polja forme u 1 stupac. */
@media (max-width: 640px) {
  .lp-page .kf-grid { grid-template-columns: 1fr; }
}

/* Kratko istakni kontakt formu kad je AI agent popuni — korisnik mora primijetiti
   da su podaci tu i da ih treba provjeriti prije slanja. */
@keyframes agent-fill-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(13, 138, 150, .55); }
  100% { box-shadow: 0 0 0 18px rgba(13, 138, 150, 0); }
}
.lp-page .cta-box.agent-filled { animation: agent-fill-pulse 1.2s ease-out 2; }

@media (prefers-reduced-motion: reduce) {
  .lp-page .cta-box.agent-filled { animation: none; outline: 2px solid var(--accent); }
}

/* Pravna stranica (/uvjeti-i-privatnost) — uska kolona, čitljiv tekst.
   .legal stoji uz .wrap pa dolazi nakon njega i sužava max-width. */
.lp-page .legal { max-width: 46rem; }
.lp-page .legal h2 {
  margin: 2.25rem 0 .6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.lp-page .legal p { margin: 0 0 .85rem; line-height: 1.65; }
.lp-page .legal a { color: var(--accent); text-decoration: underline; }

/* Napomena ispod AI agenta — mora biti vidljiva, ali ne smije zaklanjati widget. */
.lp-page .agent-note {
  position: fixed;
  right: 1rem;
  bottom: .35rem;
  z-index: 1;
  max-width: 22rem;
  margin: 0;
  font-size: .7rem;
  line-height: 1.35;
  color: var(--muted);
  text-align: right;
  pointer-events: none;
}
.lp-page .agent-note a { pointer-events: auto; text-decoration: underline; }

@media (max-width: 640px) {
  /* na mobitelu widget prekriva napomenu; tekst je i dalje u Uvjetima */
  .lp-page .agent-note { display: none; }
}
