/* ═══════════════════════════════════════════════════════════════════════════
   Moja Dadilja — Design System v2 "Porcelain"
   Premium, toplo, pouzdano. Mobile-first, pristupačno, bez framework-a.

   Sadržaj:
   01. Design tokeni          07. Footer                13. Pretraga i kartice
   02. Baza i reset           08. Landing (lp-*)        14. Profil i recenzije
   03. Layout                 09. Reveal animacije      15. Chat i intervjui
   04. Header i navigacija    10. Wizard                16. Kalendar dostupnosti
   05. Dugmad                 11. Upload / media        17. Auth i lead stranice
   06. Forme i poruke         12. Dashboard             18. Utility
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── 01. DESIGN TOKENI ─────────────────────────────────────────────────── */
:root {
  /* Brand — rose */
  --rose-700: #be123c;
  --rose-600: #e11d48;
  --rose-500: #f43f5e;
  --rose-300: #ffa1b3;
  --rose-200: #ffd0d9;
  --rose-100: #ffe4e9;
  --rose-50:  #fff1f4;

  /* Accent — indigo (strana dadilja / sekundarni akcenat) */
  --indigo-600: #4f46e5;
  --indigo-500: #6366f1;
  --indigo-100: #e0e7ff;
  --indigo-50:  #eef2ff;

  /* Ink — neutralna skala */
  --ink-900: #0f1222;
  --ink-800: #1c2033;
  --ink-700: #343a50;
  --ink-600: #4b5268;
  --ink-500: #6b7186;
  --ink-400: #9599ab;
  --ink-300: #c6c9d6;
  --ink-200: #e5e6ee;
  --ink-100: #f1f1f6;
  --ink-50:  #f8f8fb;

  /* Semantika — legacy imena zadržana, mapirana na novu paletu */
  --c-primary: var(--rose-500);
  --c-primary-dark: var(--rose-600);
  --c-primary-deep: var(--rose-700);
  --c-primary-light: var(--rose-100);
  --c-primary-soft: var(--rose-50);
  --c-accent: var(--indigo-500);
  --c-accent-dark: var(--indigo-600);
  --c-accent-light: var(--indigo-50);

  --c-bg: #f7f7fa;
  --c-surface: #ffffff;
  --c-text: var(--ink-900);
  --c-text-soft: var(--ink-600);
  --c-text-muted: var(--ink-500);
  --c-border: var(--ink-200);
  --c-border-strong: var(--ink-300);

  --c-success: #15803d;
  --c-success-bg: #e9f7ef;
  --c-warning: #b45309;
  --c-warning-bg: #fdf3e3;
  --c-danger: #dc2626;
  --c-danger-bg: #fdecec;
  --c-info: #0369a1;
  --c-info-bg: #e8f4fb;

  /* Gradijenti */
  --g-brand: linear-gradient(135deg, #f43f5e 0%, #ff8a4c 100%);
  --g-brand-soft: linear-gradient(135deg, #fff1f4 0%, #fff7ef 100%);
  --g-indigo: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

  /* Tipografija */
  --f-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;

  /* Spacing (8px baza) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;

  /* Radijusi */
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;

  /* Senke — slojevite, sa daškom brenda */
  --sh-xs: 0 1px 2px rgba(15, 18, 34, .05);
  --sh-sm: 0 1px 2px rgba(15, 18, 34, .04), 0 2px 8px rgba(15, 18, 34, .05);
  --sh-md: 0 2px 4px rgba(15, 18, 34, .04), 0 8px 24px rgba(15, 18, 34, .07);
  --sh-lg: 0 4px 8px rgba(15, 18, 34, .04), 0 20px 48px rgba(15, 18, 34, .10);
  --sh-glow: 0 8px 24px -8px rgba(244, 63, 94, .45);
  --sh-glow-lg: 0 24px 56px -16px rgba(244, 63, 94, .38);
  --ring: 0 0 0 4px rgba(244, 63, 94, .14);

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .16s;
  --t-med: .28s;
  --t-slow: .6s;

  /* Layout */
  --layout-narrow: 720px;
  --layout-wide: 1200px;
  --header-h: 72px;

  /* Legacy LP aliasi — sve mapirano na jedinstven sistem */
  --lp-primary: var(--rose-500);
  --lp-primary-dark: var(--rose-600);
  --lp-primary-light: var(--rose-100);
  --lp-accent: var(--indigo-500);
  --lp-accent-light: var(--indigo-50);
  --lp-ink: var(--ink-900);
  --lp-ink-soft: var(--ink-600);
  --lp-ink-muted: var(--ink-400);
  --lp-surface: #ffffff;
  --lp-surface-alt: var(--ink-50);
  --lp-surface-warm: var(--rose-50);
  --lp-border: var(--ink-200);
  --lp-gradient: var(--g-brand);
  --lp-gradient-soft: var(--g-brand-soft);
  --lp-shadow-sm: var(--sh-xs);
  --lp-shadow-md: var(--sh-md);
  --lp-shadow-lg: var(--sh-lg);
  --lp-shadow-glow: var(--sh-glow-lg);
}

/* ─── 02. BAZA I RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  line-height: 1.18;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.02em;
  color: var(--c-text);
  text-wrap: balance;
}
h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; }
h2 { font-size: clamp(23px, 3vw, 30px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 var(--sp-4); }
a { color: var(--c-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
small { color: var(--c-text-muted); font-size: 13px; }
::selection { background: var(--rose-500); color: #fff; }

:focus-visible { outline: 2px solid var(--rose-500); outline-offset: 2px; border-radius: 4px; }

.muted { color: var(--c-text-muted); }
.hint { color: var(--c-text-muted); font-size: 14px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink-900); color: #fff; padding: 10px 18px;
  border-radius: var(--r-sm); z-index: 1000; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ─── 03. LAYOUT ────────────────────────────────────────────────────────── */
.container { max-width: var(--layout-wide); margin: 0 auto; padding: 0 var(--sp-5); }
.container.narrow { max-width: var(--layout-narrow); }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--sp-5); }
.site-main { padding: var(--sp-6) 0 var(--sp-8); }
.page--home .site-main, .page--home main { padding: 0; background: #fff; }

/* ─── 04. HEADER I NAVIGACIJA ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-med) var(--ease), background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--ink-100);
  box-shadow: 0 8px 32px -12px rgba(15, 18, 34, .12);
}
.header-row { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--sp-4); }
.brand { display: flex; align-items: center; gap: var(--sp-2); font-weight: 700; color: var(--c-text); flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand__logo { display: block; height: 46px; width: auto; max-width: 160px; object-fit: contain; }
.brand__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--g-brand); color: #fff; font-size: 18px;
  box-shadow: var(--sh-glow);
}
.brand__name { font-family: var(--f-heading); font-size: 18px; }

.site-nav { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.site-nav a {
  color: var(--ink-600); font-weight: 500; font-size: 15px;
  padding: 8px 4px; position: relative;
  transition: color var(--t-fast) ease;
}
.site-nav a:hover { color: var(--ink-900); text-decoration: none; }
.site-nav a:not(.btn):not(.nav-bell):not(.nav-mini)::after {
  content: ''; position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: var(--g-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav a.btn { color: #fff; }
.site-nav .nav-bell, .site-nav .nav-mini {
  font-size: 17px; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink-50); border: 1px solid var(--ink-100);
  padding: 0; transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.site-nav .nav-bell:hover, .site-nav .nav-mini:hover { background: var(--rose-50); border-color: var(--rose-200); transform: translateY(-1px); }
.logout-form { display: inline; }
.link-button {
  background: none; border: 0; color: var(--ink-600); cursor: pointer;
  font: inherit; font-weight: 500; font-size: 15px; padding: 8px 4px;
  transition: color var(--t-fast) ease;
}
.link-button:hover { color: var(--ink-900); }

/* Mobilni header */
@media (max-width: 640px) {
  .header-row { height: auto; padding: var(--sp-2) 0; align-items: center; }
  .brand__logo { height: 38px; }
  .site-nav { justify-content: flex-end; gap: var(--sp-3); row-gap: 6px; }
  .site-nav .lang-switcher {
    order: 99; flex-basis: 100%; margin: 0;
    display: flex; justify-content: flex-end;
  }
  .lang-switcher__menu { right: 0; left: auto; min-width: 160px; }
  .site-nav .btn { padding: 8px 14px; font-size: 13px; }
  .site-nav a { padding: 4px 2px; font-size: 14px; }
  .site-nav .nav-bell, .site-nav .nav-mini { width: 34px; height: 34px; font-size: 15px; }
}
@media (max-width: 420px) {
  .site-nav { gap: var(--sp-2); }
  .site-nav .btn { padding: 7px 12px; font-size: 12px; }
}

/* ─── 05. DUGMAD ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-pill);
  font-family: var(--f-body); font-weight: 600; font-size: 14.5px; line-height: 1.2;
  border: 1px solid transparent; cursor: pointer; user-select: none;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease),
              background var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); transition-duration: .05s; }
.btn:focus-visible { outline: 0; box-shadow: var(--ring); }
.btn svg { flex-shrink: 0; }

.btn--primary { background: var(--g-brand); color: #fff; box-shadow: var(--sh-glow); }
.btn--primary:hover { color: #fff; box-shadow: 0 12px 28px -8px rgba(244, 63, 94, .55); }
.btn--secondary { background: var(--ink-900); color: #fff; }
.btn--secondary:hover { background: var(--ink-700); color: #fff; }
.btn--ghost { background: #fff; color: var(--ink-800); border-color: var(--ink-200); box-shadow: var(--sh-xs); }
.btn--ghost:hover { border-color: var(--ink-300); background: var(--ink-50); }
.btn--light { background: rgba(255,255,255,.95); color: var(--ink-800); border-color: rgba(255,255,255,.95); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--c-primary-dark); }
.btn--sm { padding: 7px 14px; font-size: 13px; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; display: flex; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ─── 06. FORME I PORUKE ────────────────────────────────────────────────── */
.form-card {
  background: var(--c-surface);
  padding: clamp(20px, 3.5vw, 36px);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  margin-bottom: var(--sp-5);
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp-5); }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-row--four { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-4); align-items: end; }
.form-row label { font-weight: 600; font-size: 14px; color: var(--ink-800); }
.form-row fieldset { border: 0; padding: 0; margin: 0; }
.form-row legend { font-weight: 600; font-size: 14px; color: var(--ink-800); padding: 0; margin-bottom: 6px; }
.form-row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.form-row ul label { display: flex; align-items: center; gap: 10px; font-weight: 500; cursor: pointer; padding: 10px 14px; border: 1px solid var(--ink-200); border-radius: var(--r-sm); background: #fff; transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast); }
.form-row ul label:hover { border-color: var(--rose-300); background: var(--rose-50); }
.form-row ul label:has(input:checked) { border-color: var(--rose-500); background: var(--rose-50); box-shadow: var(--ring); }

.input, .select, .textarea, input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-sm);
  font: inherit; font-size: 15px;
  background: #fff;
  color: var(--c-text);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-300); }
.input:focus, .select:focus, .textarea:focus {
  outline: 0; border-color: var(--rose-500); box-shadow: var(--ring); background: #fff;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.textarea { min-height: 110px; resize: vertical; }
.input--xs { max-width: 100px; }
.select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7186' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
input[type="checkbox"], input[type="radio"] { accent-color: var(--rose-500); width: 18px; height: 18px; flex-shrink: 0; }
input[type="file"] { padding: 10px; cursor: pointer; border-style: dashed; background: var(--ink-50); }
input[type="file"]::file-selector-button {
  font: inherit; font-weight: 600; font-size: 13px;
  padding: 7px 14px; margin-right: 12px;
  border: 0; border-radius: var(--r-pill);
  background: var(--ink-900); color: #fff; cursor: pointer;
}

.checkbox-row { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.checkbox-row input { width: 18px; }
.checkbox-row label { margin: 0; cursor: pointer; }
.field-error { color: var(--c-danger); font-size: 13px; font-weight: 500; }
.form-error {
  background: var(--c-danger-bg); color: var(--c-danger);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm);
  border: 1px solid rgba(220, 38, 38, .15);
  margin-bottom: var(--sp-4); font-size: 14px;
}
.form-meta { text-align: center; margin-top: var(--sp-4); font-size: 14px; }

/* Poruke (Django messages) */
.messages { padding: var(--sp-3) 0 0; }
.message {
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm); margin-bottom: var(--sp-2);
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent;
  animation: msg-in var(--t-slow) var(--ease);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.message--success { background: var(--c-success-bg); color: var(--c-success); border-color: rgba(21, 128, 61, .15); }
.message--info { background: var(--c-info-bg); color: var(--c-info); border-color: rgba(3, 105, 161, .15); }
.message--warning { background: var(--c-warning-bg); color: var(--c-warning); border-color: rgba(180, 83, 9, .15); }
.message--error { background: var(--c-danger-bg); color: var(--c-danger); border-color: rgba(220, 38, 38, .15); }

/* ─── 07. FOOTER ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.72);
  padding: 64px 0 28px;
  margin-top: 0;
  font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--g-brand);
}
.site-footer .container { display: block; }
.footer-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 24px;
}
.footer-row p { margin: 0; }
.lp-footer-brand img { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(.95); }
.lp-footer-brand p { font-size: 14px; line-height: 1.65; max-width: 280px; color: rgba(255,255,255,.55); }
.lp-footer-col h4 {
  font-family: var(--f-heading); font-size: 14px; font-weight: 700;
  color: #fff; margin: 0 0 18px; letter-spacing: .06em; text-transform: uppercase;
}
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lp-footer-col a { color: rgba(255,255,255,.66); font-size: 14px; transition: color var(--t-fast) ease, padding-left var(--t-fast) ease; }
.lp-footer-col a:hover { color: #fff; text-decoration: none; }
.lp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.lp-footer-bottom a { color: rgba(255,255,255,.7); }
.lp-footer-bottom a:hover { color: #fff; }

@media (max-width: 720px) {
  .footer-row { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-row { grid-template-columns: 1fr; gap: 28px; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   08. LANDING PAGE (lp-*)
   ═══════════════════════════════════════════════════════════════════════ */

/* Eyebrow */
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rose-600);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 18px;
}

/* Gradient text */
.lp-gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 720px) {
  .lp-gradient-text { white-space: nowrap; }
}

/* LP dugmad */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--f-body); font-weight: 600; font-size: 15px; line-height: 1;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease),
              background var(--t-fast) ease, color var(--t-fast) ease, border-color var(--t-fast) ease;
}
.lp-btn:hover { text-decoration: none; transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn:focus-visible { outline: 0; box-shadow: var(--ring); }
.lp-btn--lg { padding: 17px 32px; font-size: 16px; }
.lp-btn--primary { background: var(--g-brand); color: #fff; box-shadow: var(--sh-glow); }
.lp-btn--primary:hover { box-shadow: 0 16px 36px -10px rgba(244, 63, 94, .6); color: #fff; }
.lp-btn--primary svg { transition: transform var(--t-med) var(--ease); }
.lp-btn--primary:hover svg { transform: translateX(3px); }
.lp-btn--ghost { background: #fff; color: var(--ink-900); border-color: var(--ink-200); box-shadow: var(--sh-xs); }
.lp-btn--ghost:hover { background: var(--ink-50); border-color: var(--ink-300); }
.lp-btn--white { background: #fff; color: var(--rose-600); box-shadow: 0 12px 32px -8px rgba(0,0,0,.28); }
.lp-btn--white:hover { background: #fff; color: var(--rose-600); }

/* Sekcije */
.lp-section { padding: clamp(72px, 9vw, 112px) 0; }
.lp-section--alt { background: var(--ink-50); }
.lp-section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); }
.lp-section__title {
  font-family: var(--f-heading);
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--ink-900); margin: 0 0 14px; line-height: 1.12;
  letter-spacing: -0.025em; text-wrap: balance;
}
.lp-section__sub { font-size: 17px; color: var(--ink-600); margin: 0; line-height: 1.65; text-wrap: balance; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
  background:
    radial-gradient(1000px 520px at 85% -10%, rgba(255, 138, 76, .10), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(244, 63, 94, .08), transparent 55%),
    #fff;
}
.lp-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp-hero__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; }
.lp-hero__blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(244,63,94,.4), transparent 62%);
  top: -160px; left: -120px;
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.lp-hero__blob--2 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,138,76,.3), transparent 62%);
  bottom: -220px; right: -200px;
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 24px) scale(1.06); }
}
.lp-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.lp-hero__title {
  font-family: var(--f-heading);
  font-size: clamp(30px, 5.2vw, 66px); font-weight: 800;
  color: var(--ink-900); line-height: 1.06; letter-spacing: -0.035em;
  margin: 0 0 22px; text-wrap: balance;
}
.lp-hero__subtitle {
  font-size: clamp(16px, 1.6vw, 18px); color: var(--ink-600);
  line-height: 1.65; margin: 0 0 34px; max-width: 540px;
}
.lp-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.lp-hero__bullets { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.lp-hero__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-700); font-weight: 500;
}
.lp-hero__bullets svg {
  color: var(--rose-500); flex-shrink: 0;
  background: var(--rose-50); border-radius: 50%; padding: 3px;
  width: 22px; height: 22px;
}

/* Hero visual — staggered fotke + floating badge */
.lp-hero__visual { position: relative; height: 560px; max-width: 520px; margin-left: auto; }
.lp-hero__photo {
  position: absolute;
  background-size: cover; background-position: center;
  border-radius: 28px;
  box-shadow: var(--sh-lg);
}
.lp-hero__photo--main {
  width: 70%; height: 84%; top: 8%; right: 10%; z-index: 2;
  box-shadow: 0 32px 72px -24px rgba(15, 18, 34, .28);
}
.lp-hero__photo--top {
  width: 44%; height: 36%; top: 0; left: 0; z-index: 3;
  border: 6px solid #fff; border-radius: 22px;
  animation: photo-float 7s ease-in-out infinite;
}
.lp-hero__photo--bottom {
  width: 48%; height: 38%; bottom: 0; right: 0; z-index: 3;
  border: 6px solid #fff; border-radius: 22px;
  animation: photo-float 8s ease-in-out 1.2s infinite;
}
@keyframes photo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lp-hero__badge {
  position: absolute; bottom: 8%; left: -8px; z-index: 4;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  padding: 14px 20px; border-radius: 18px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px;
  animation: photo-float 6s ease-in-out .6s infinite;
}
.lp-hero__badge-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--g-brand);
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-glow);
}
.lp-hero__badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.lp-hero__badge-text strong { font-family: var(--f-heading); font-size: 18px; color: var(--ink-900); font-weight: 800; letter-spacing: -.01em; }
.lp-hero__badge-text small { font-size: 12px; color: var(--ink-500); }

/* ─── STATS BAR ─────────────────────────────────────────────────────────── */
.lp-stats {
  padding: 48px 0;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(244, 63, 94, .16), transparent 60%),
    radial-gradient(700px 300px at 85% 100%, rgba(99, 102, 241, .14), transparent 60%),
    var(--ink-900);
  color: #fff;
  position: relative; overflow: hidden;
}
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.lp-stat__num {
  font-family: var(--f-heading);
  font-size: clamp(30px, 3.6vw, 44px); font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, #ffb8c4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em; line-height: 1.1;
}
.lp-stat__label { font-size: 14px; color: rgba(255,255,255,.66); font-weight: 500; margin-top: 6px; }

/* ─── STEPS — kako radi ─────────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.lp-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(to right, var(--ink-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.lp-step {
  position: relative; z-index: 1;
  background: #fff;
  padding: 36px 30px;
  border-radius: 24px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) ease;
}
.lp-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--rose-200);
}
.lp-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--g-brand); color: #fff;
  font-family: var(--f-heading); font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 22px;
  box-shadow: var(--sh-glow);
}
.lp-step h3 {
  font-family: var(--f-heading); font-size: 22px; font-weight: 700;
  color: var(--ink-900); margin: 0 0 10px; letter-spacing: -0.015em;
}
.lp-step p { color: var(--ink-600); line-height: 1.65; margin: 0; font-size: 15px; }

/* ─── SPLIT CARDS — za porodice / za dadilje ────────────────────────────── */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lp-card {
  background: #fff;
  padding: 44px 40px;
  border-radius: 28px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.lp-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.lp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--g-brand);
}
.lp-card--nanny::before { background: var(--g-indigo); }
.lp-card::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--rose-50) 0%, transparent 70%);
  pointer-events: none;
}
.lp-card--nanny::after { background: radial-gradient(circle, var(--indigo-50) 0%, transparent 70%); }
.lp-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 20px;
  background: var(--rose-50); color: var(--rose-600);
  border: 1px solid var(--rose-100);
  margin-bottom: 22px; position: relative; z-index: 1;
}
.lp-card--nanny .lp-card__icon { background: var(--indigo-50); color: var(--indigo-500); border-color: var(--indigo-100); }
.lp-card h3 {
  font-family: var(--f-heading); font-size: 26px; font-weight: 800;
  color: var(--ink-900); margin: 0 0 12px; letter-spacing: -0.02em;
}
.lp-card > p { color: var(--ink-600); line-height: 1.65; margin: 0 0 22px; font-size: 15px; }
.lp-card__list { list-style: none; padding: 0; margin: 0 0 26px; position: relative; z-index: 1; }
.lp-card__list li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  color: var(--ink-800); font-size: 15px; font-weight: 500;
}
.lp-card__list li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--rose-100); color: var(--rose-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.lp-card--nanny .lp-card__list li::before { background: var(--indigo-100); color: var(--indigo-600); }
.lp-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rose-600); font-weight: 700; font-size: 15px;
  transition: gap var(--t-med) var(--ease);
}
.lp-card--nanny .lp-link-arrow { color: var(--indigo-500); }
.lp-link-arrow:hover { gap: 12px; text-decoration: none; }

/* ─── BENEFITS GRID ─────────────────────────────────────────────────────── */
.lp-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
.lp-benefit {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: background var(--t-med) ease, border-color var(--t-med) ease, transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.lp-benefit:hover {
  background: #fff; border-color: var(--ink-100);
  transform: translateY(-4px); box-shadow: var(--sh-md);
}
.lp-benefit__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  background: var(--g-brand-soft);
  border: 1px solid var(--rose-100);
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 18px;
}
.lp-benefit h3 {
  font-family: var(--f-heading); font-size: 19px; font-weight: 700;
  color: var(--ink-900); margin: 0 0 8px; letter-spacing: -0.01em;
}
.lp-benefit p { color: var(--ink-600); line-height: 1.65; margin: 0; font-size: 15px; }

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────── */
.lp-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lp-testimonial {
  background: #fff;
  padding: 34px 30px;
  border-radius: 24px;
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  margin: 0; position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.lp-testimonial:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.lp-testimonial__stars {
  color: #f59e0b; font-size: 15px; letter-spacing: 3px;
  margin-bottom: 14px; line-height: 1;
}
.lp-testimonial blockquote {
  margin: 0 0 22px; padding: 0; flex: 1;
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-800); font-weight: 500;
}
.lp-testimonial figcaption { display: flex; align-items: center; gap: 12px; line-height: 1.35; }
.lp-testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--g-brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-heading); font-weight: 700; font-size: 15px;
}
.lp-testimonial--indigo .lp-testimonial__avatar { background: var(--g-indigo); }
.lp-testimonial figcaption > div { display: flex; flex-direction: column; }
.lp-testimonial figcaption strong { color: var(--ink-900); font-weight: 700; font-size: 15px; }
.lp-testimonial figcaption span { color: var(--ink-500); font-size: 13px; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.lp-faq { display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 4px 26px;
  box-shadow: var(--sh-xs);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-med) var(--ease);
}
.lp-faq__item[open] { border-color: var(--rose-200); box-shadow: var(--sh-md); }
.lp-faq__item summary {
  list-style: none; cursor: pointer;
  padding: 21px 40px 21px 0;
  font-weight: 600; font-size: 16px;
  color: var(--ink-900);
  position: relative;
  transition: color var(--t-fast) ease;
}
.lp-faq__item summary:hover { color: var(--rose-600); }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--rose-50); color: var(--rose-600);
  border: 1px solid var(--rose-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 500;
  transition: transform var(--t-med) var(--ease), background var(--t-fast) ease;
}
.lp-faq__item[open] summary::after { content: '−'; background: var(--rose-100); }
.lp-faq__item p { margin: 0 0 22px; color: var(--ink-600); line-height: 1.7; font-size: 15px; }

/* ─── FINAL CTA ─────────────────────────────────────────────────────────── */
.lp-cta { padding: clamp(64px, 8vw, 104px) 0; background: #fff; }
.lp-cta__card {
  background: var(--g-brand);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  box-shadow: var(--sh-glow-lg);
  position: relative; overflow: hidden;
}
.lp-cta__card::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.lp-cta__card::after {
  content: ''; position: absolute; bottom: -90px; left: 18%;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.lp-cta__text { position: relative; z-index: 1; max-width: 560px; }
.lp-cta__text h2 {
  font-family: var(--f-heading); font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
  color: #fff; margin: 0 0 10px; line-height: 1.15; letter-spacing: -0.025em;
}
.lp-cta__text p { color: rgba(255,255,255,.94); font-size: 17px; line-height: 1.55; margin: 0; }
.lp-cta__actions { position: relative; z-index: 1; }

/* ─── LP RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero__visual { height: 420px; margin: 0 auto; max-width: 440px; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .lp-steps { grid-template-columns: 1fr; gap: 18px; }
  .lp-steps::before { display: none; }
  .lp-split { grid-template-columns: 1fr; }
  .lp-benefits { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-cta__card { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .lp-hero__title { line-height: 1.12; margin-bottom: 14px; }
  .lp-hero__subtitle { font-size: 15px; margin-bottom: 24px; }
  .lp-hero__actions { width: 100%; flex-direction: column; gap: 10px; margin-bottom: 26px; }
  .lp-hero__actions .lp-btn { width: 100%; }
  .lp-hero__bullets li { font-size: 14px; }
  .lp-hero__visual { height: 340px; max-width: 100%; margin: 0; }
  .lp-hero__photo--top { width: 50%; height: 38%; }
  .lp-hero__photo--bottom { width: 52%; height: 40%; }
  .lp-hero__badge { padding: 10px 14px; left: 4px; bottom: 4%; }
  .lp-hero__badge-icon { width: 38px; height: 38px; font-size: 18px; }
  .lp-hero__badge-text strong { font-size: 15px; }
  .lp-hero__badge-text small { font-size: 11px; }
  .lp-hero__blob--1 { width: 280px; height: 280px; top: -100px; left: -80px; }
  .lp-hero__blob--2 { width: 320px; height: 320px; bottom: -120px; right: -120px; }
  .lp-benefits { grid-template-columns: 1fr; }
  .lp-benefit { padding: 22px; }
  .lp-card { padding: 30px 22px; }
  .lp-section__sub { font-size: 15px; }
  .container, .container--narrow { padding: 0 18px; }
}
@media (max-width: 380px) {
  .lp-hero__visual { height: 280px; }
  .lp-eyebrow { font-size: 11px; padding: 5px 12px; }
}

/* ─── 09. REVEAL ANIMACIJE (scroll) ─────────────────────────────────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }
.js [data-reveal]:nth-child(2) { transition-delay: .08s; }
.js [data-reveal]:nth-child(3) { transition-delay: .16s; }
.js [data-reveal]:nth-child(4) { transition-delay: .24s; }
.js [data-reveal]:nth-child(5) { transition-delay: .32s; }
.js [data-reveal]:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   10. WIZARD — kreiranje profila (porodice i dadilje)
   ═══════════════════════════════════════════════════════════════════════ */
.page--wizard { background: var(--c-bg); }
.page--wizard .site-main {
  padding: var(--sp-6) 0 var(--sp-8);
  background:
    radial-gradient(900px 320px at 50% -80px, rgba(244, 63, 94, .05), transparent 70%),
    var(--c-bg);
}
.wizard {
  max-width: var(--layout-wide); margin: 0 auto; padding: 0 var(--sp-5);
  display: grid; grid-template-columns: 264px 1fr; gap: var(--sp-5);
  align-items: start;
}
.wizard--3col { grid-template-columns: 264px minmax(0, 1fr) 320px; }
@media (max-width: 1100px) {
  .wizard--3col { grid-template-columns: 264px 1fr; }
  .wizard__sidebar--right { grid-column: 1 / -1; position: static; }
}
@media (max-width: 880px) {
  .wizard { grid-template-columns: 1fr; }
  .wizard__sidebar { position: static; }
}
@media (max-width: 720px) {
  .wizard, .wizard--3col { grid-template-columns: 1fr; padding: 0 var(--sp-3); }
  .wizard__sidebar { position: static; }
}

/* Levi sidebar — stepper */
.wizard__sidebar {
  background: var(--c-surface);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  height: fit-content;
  position: sticky; top: calc(var(--header-h) + var(--sp-4));
}
.wizard__title {
  font-size: 19px; font-weight: 800; letter-spacing: -.015em;
  margin-bottom: var(--sp-4);
}
.wizard__progress-text {
  font-size: 13px; color: var(--c-text-muted); margin-bottom: var(--sp-2);
  display: flex; justify-content: space-between; align-items: baseline;
}
.wizard__progress-text strong { color: var(--rose-600); font-size: 15px; font-family: var(--f-heading); }
.wizard__progress-bar {
  width: 100%; height: 8px;
  background: var(--ink-100);
  border-radius: var(--r-pill);
  overflow: hidden; margin-bottom: var(--sp-5);
}
.wizard__progress-fill {
  height: 100%;
  background: var(--g-brand);
  border-radius: var(--r-pill);
  transition: width var(--t-slow) var(--ease);
}

.wizard__steps {
  list-style: none; padding: 0; margin: 0 0 var(--sp-4);
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.wizard__steps::before {
  content: ''; position: absolute;
  left: 24px; top: 20px; bottom: 20px; width: 2px;
  background: var(--ink-100);
  z-index: 0;
}
.wizard__step {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 14px; color: var(--c-text-muted);
  position: relative; z-index: 1;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}
.wizard__step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink-200);
  color: var(--ink-500);
  font-size: 12px; font-weight: 700;
  transition: all var(--t-med) var(--ease);
}
.wizard__step.is-done { color: var(--ink-700); }
.wizard__step.is-done .wizard__step-icon {
  background: var(--c-success); border-color: var(--c-success); color: #fff;
}
.wizard__step.is-current {
  background: var(--rose-50); color: var(--rose-700); font-weight: 600;
}
.wizard__step.is-current .wizard__step-icon {
  background: var(--g-brand); border-color: transparent; color: #fff;
  box-shadow: 0 0 0 4px var(--rose-100);
}
.wizard__step.is-locked { opacity: .5; }
.wizard__step-label { line-height: 1.3; }

.wizard__help {
  font-size: 13px; color: var(--ink-700);
  margin-top: var(--sp-4); padding: var(--sp-3) var(--sp-4);
  background: var(--g-brand-soft);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-md);
  line-height: 1.55;
}
.wizard__autosave {
  font-size: 13px; font-weight: 500; color: var(--c-success);
  margin-top: var(--sp-3);
  padding: 8px 14px;
  background: var(--c-success-bg);
  border-radius: var(--r-pill);
  min-height: 0;
  transition: opacity var(--t-med) ease;
}
.wizard__autosave:empty { display: none; }

/* Glavna kolona */
.wizard__main { min-width: 0; }
.wizard__heading {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: var(--sp-2);
}
.wizard__lede { color: var(--c-text-soft); font-size: 16px; margin-bottom: var(--sp-5); max-width: 640px; }
.wizard__lede:empty { display: none; }
.wizard__nav { display: flex; justify-content: space-between; margin-top: var(--sp-4); }
.wizard__buttons { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); }
.wizard__buttons .btn { flex: 1; min-width: 200px; }
.wizard__buttons-help {
  font-size: 13px; color: var(--c-text-muted);
  margin-top: var(--sp-3); line-height: 1.55;
}

/* Wizard chat (desni sidebar) */
.wizard__sidebar--right {
  padding: 0; background: transparent; border: 0; box-shadow: none;
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.wizard-chat {
  background: var(--c-surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--sp-4);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.wizard-chat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--g-brand);
}
.wizard-chat__title { font-size: 16px; font-weight: 700; margin: 6px 0 4px; }
.wizard-chat__hint { font-size: 12.5px; color: var(--c-text-muted); margin: 0 0 var(--sp-3); }
.wizard-chat__messages {
  flex: 1; min-height: 200px; max-height: 360px; overflow-y: auto;
  background: var(--ink-50);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-300) transparent;
}
.wizard-chat__messages::-webkit-scrollbar { width: 6px; }
.wizard-chat__messages::-webkit-scrollbar-thumb { background: var(--ink-300); border-radius: 3px; }
.wizard-chat__empty { color: var(--c-text-muted); font-size: 13px; text-align: center; margin: var(--sp-4) 0; }
.wizard-chat__msg {
  padding: 9px 13px; border-radius: 16px; max-width: 85%;
  font-size: 14px; box-shadow: var(--sh-xs);
}
.wizard-chat__msg--admin { background: #fff; border: 1px solid var(--ink-100); align-self: flex-start; border-bottom-left-radius: 6px; }
.wizard-chat__msg--me { background: var(--rose-100); align-self: flex-end; border-bottom-right-radius: 6px; }
.wizard-chat__msg-header { font-size: 11px; color: var(--c-text-muted); margin-bottom: 2px; }
.wizard-chat__msg-body { line-height: 1.45; word-wrap: break-word; }
.wizard-chat__attach-link { display: inline-block; margin-top: 4px; font-size: 12px; }
.wizard-chat__form { display: flex; flex-direction: column; gap: var(--sp-2); }
.wizard-chat__form textarea {
  width: 100%; resize: vertical; padding: 10px 12px;
  border: 1.5px solid var(--ink-200); border-radius: var(--r-sm);
  font: inherit; font-size: 14px;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease;
}
.wizard-chat__form textarea:focus { outline: 0; border-color: var(--rose-500); box-shadow: var(--ring); }
.wizard-chat__form-row { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2); }
.wizard-chat__attach { cursor: pointer; font-size: 13px; color: var(--c-text-muted); }
.wizard-chat__attach:hover { color: var(--rose-600); }

/* Resursi */
.pinned-resources {
  margin-bottom: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--r-lg);
}
.pinned-resources__title { margin: 0 0 var(--sp-3); font-size: 15px; color: #92400e; }
.wizard-resources {
  background: var(--c-surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--sp-4);
}
.wizard-resources__title { margin: 0 0 var(--sp-3); font-size: 15px; }
.resource-card {
  padding: var(--sp-3) var(--sp-4);
  background: var(--ink-50);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  margin-bottom: var(--sp-3);
  transition: border-color var(--t-fast) ease;
}
.resource-card:hover { border-color: var(--ink-200); }
.resource-card:last-child { margin-bottom: 0; }
.resource-card h4 { margin: 0 0 var(--sp-2); font-size: 14px; color: var(--c-text); }
.resource-card__body { font-size: 13px; color: var(--c-text-muted); line-height: 1.55; margin-bottom: var(--sp-2); }
.resource-card--compact h4 { font-size: 13px; }
.resource-card--compact .resource-card__body { font-size: 12px; }
.resource-attachment {
  display: inline-block; padding: 5px 12px;
  background: var(--rose-100); color: var(--rose-700);
  border-radius: var(--r-pill); font-size: 12px; font-weight: 500;
  text-decoration: none; margin: 2px;
  transition: background var(--t-fast) ease, color var(--t-fast) ease;
}
.resource-attachment:hover { background: var(--rose-500); color: #fff; text-decoration: none; }

/* ─── 11. UPLOAD / MEDIA ────────────────────────────────────────────────── */
.upload-list, .lang-form, .photo-gallery-form, .children-list {
  background: var(--c-surface);
  padding: clamp(20px, 3.5vw, 32px);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--sp-5);
}
.doc-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.doc-item {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.doc-item:hover { border-color: var(--ink-200); background: #fff; }
.doc-item small { display: block; }
.upload-form { display: flex; flex-direction: column; gap: var(--sp-3); padding-top: var(--sp-4); border-top: 1px solid var(--ink-100); }
.upload-form--inline { flex-direction: row; flex-wrap: wrap; align-items: end; border-top: 0; padding-top: 0; }
.upload-form--inline > * { flex: 0 1 auto; }

/* Dropzone */
.dropzone {
  border: 2px dashed var(--ink-300);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  text-align: center; cursor: pointer;
  background: var(--ink-50);
  transition: all var(--t-med) var(--ease);
}
.dropzone:hover { background: var(--rose-50); border-color: var(--rose-300); }
.dropzone.is-dragover {
  background: var(--rose-50); border-color: var(--rose-500);
  transform: scale(1.01); box-shadow: var(--ring);
}
.dropzone__icon {
  font-size: 26px; margin: 0 auto var(--sp-3);
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: 50%; box-shadow: var(--sh-sm);
}
.dropzone__text { margin: 0 0 var(--sp-2); font-weight: 600; color: var(--c-text); }
.dropzone__hint { margin: 0; color: var(--c-text-muted); font-size: 13px; }

/* Chips */
.chip-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip {
  background: var(--rose-50); color: var(--rose-700);
  border: 1px solid var(--rose-100);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.chip__remove {
  background: transparent; border: 0; color: inherit; cursor: pointer;
  font-size: 16px; line-height: 1; padding: 0;
  opacity: .6; transition: opacity var(--t-fast) ease;
}
.chip__remove:hover { opacity: 1; }

/* Photo grid */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--sp-3); margin-bottom: var(--sp-4); }
.photo-tile, .photo-grid img {
  aspect-ratio: 1; border-radius: var(--r-md); object-fit: cover;
  position: relative; overflow: hidden;
}
.photo-tile { box-shadow: var(--sh-sm); transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
.photo-tile:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.photo-tile__remove {
  position: absolute; top: 6px; right: 6px;
  background: rgba(15, 18, 34, .65); color: #fff;
  backdrop-filter: blur(4px);
  border: 0; width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; font-size: 15px; line-height: 1;
  transition: background var(--t-fast) ease;
}
.photo-tile__remove:hover { background: var(--c-danger); }

/* Deca */
.child-cards { list-style: none; padding: 0; margin: 0 0 var(--sp-4); }
.child-card {
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
}
.child-card > div { display: flex; flex-direction: column; }
.child-form-collapse {
  background: var(--ink-50);
  border: 1px dashed var(--ink-300);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast) ease;
}
.child-form-collapse:hover { border-color: var(--rose-300); }
.child-form-collapse[open] { padding-bottom: var(--sp-4); border-style: solid; border-color: var(--ink-200); background: #fff; }
.child-form-collapse summary { cursor: pointer; font-weight: 600; color: var(--rose-600); }
.child-form-collapse .form-card { box-shadow: none; border: 0; padding: var(--sp-4) 0 0; margin: 0; background: transparent; }

/* ─── 12. DASHBOARD ─────────────────────────────────────────────────────── */
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-5); gap: var(--sp-3); flex-wrap: wrap; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-4); }
.card {
  background: var(--c-surface);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.stat-card .stat {
  font-family: var(--f-heading);
  font-size: 34px; font-weight: 800; letter-spacing: -.02em;
  color: var(--rose-600); margin: var(--sp-2) 0;
}

/* Badges */
.badge {
  display: inline-block; padding: 3px 11px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  background: var(--ink-100); color: var(--ink-700);
}
.badge--success { background: var(--c-success-bg); color: var(--c-success); }
.badge--info { background: var(--c-info-bg); color: var(--c-info); }
.badge--warning, .badge--pending { background: var(--c-warning-bg); color: var(--c-warning); }
.badge--accepted { background: var(--c-success-bg); color: var(--c-success); }
.badge--rejected, .badge--cancelled, .badge--expired { background: var(--c-danger-bg); color: var(--c-danger); }
.badge-list { list-style: none; padding: 0; margin: var(--sp-3) 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.badge--verified {
  background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff;
  padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}
.badge--verified::before { content: "✓"; font-weight: 900; }

/* PWA actions */
.pwa-actions {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--g-brand-soft);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-lg);
}
.pwa-actions h3 { margin: 0 0 var(--sp-2); color: var(--c-text); }
.pwa-actions p { margin-bottom: var(--sp-3); color: var(--c-text-muted); }
.pwa-actions__buttons { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.pwa-actions__buttons .btn:disabled { opacity: 0.65; cursor: default; }
body.is-installed-pwa [data-pwa-install] { display: none !important; }

/* ─── 13. PRETRAGA I KARTICE DADILJA ────────────────────────────────────── */
.search-filters {
  background: var(--c-surface);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--sp-5);
}
.filter-checkboxes { display: flex; flex-direction: column; gap: var(--sp-1); font-size: 14px; }
.nanny-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--sp-4); }
.nanny-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) ease;
}
.nanny-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--rose-200); }
.nanny-card__link { display: block; color: inherit; }
.nanny-card__link:hover { text-decoration: none; }
.nanny-card__photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--rose-100); }
.nanny-card__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-heading); font-size: 48px; font-weight: 700;
  color: var(--rose-600);
  background: var(--g-brand-soft);
}
.nanny-card__body { padding: var(--sp-4); }
.nanny-card__body h3 { margin-bottom: var(--sp-1); }
.nanny-card__body .meta { font-size: 13px; color: var(--c-text-muted); }
.nanny-card__body .excerpt { font-size: 13px; margin-top: var(--sp-2); }
.nanny-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-2); margin-bottom: var(--sp-1); }
.nanny-card__top h3 { margin: 0; flex: 1; }

.match-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.match-badge--excellent { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; }
.match-badge--good { background: #dcfce7; color: #166534; }
.match-badge--fair { background: #fef3c7; color: #92400e; }
.match-badge--low { background: var(--ink-100); color: var(--ink-600); }
.match-reasons { list-style: none; padding: 0; margin: var(--sp-2) 0 0; font-size: 12px; color: var(--c-text-muted); }
.match-reasons li { padding: 1px 0; }

/* ─── 14. PROFIL I RECENZIJE ────────────────────────────────────────────── */
.profile-page {
  background: var(--c-surface);
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--ink-100);
}
.profile-page__header { display: flex; gap: var(--sp-5); align-items: center; margin-bottom: var(--sp-5); flex-wrap: wrap; }
.profile-page__avatar {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--rose-200), var(--sh-md);
}
.profile-page__intro h1 { margin-bottom: var(--sp-1); }
.profile-page__actions { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); flex-wrap: wrap; }
.profile-page section { margin-bottom: var(--sp-5); }
.profile-page section h2 {
  font-size: 17px; font-weight: 700;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--ink-100);
  letter-spacing: .01em;
}

.profile-rating { margin: var(--sp-2) 0 0; display: flex; align-items: center; gap: var(--sp-2); font-size: 14px; }
.profile-rating__stars { color: #f59e0b; letter-spacing: 2px; font-size: 18px; }
.reviews-section { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--ink-100); }
.reviews-summary {
  display: flex; gap: var(--sp-6); align-items: center;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--sp-4);
}
.reviews-summary__avg strong { font-family: var(--f-heading); font-size: 40px; font-weight: 800; color: var(--c-text); display: block; letter-spacing: -.02em; }
.reviews-summary__avg small { color: var(--c-text-muted); }
.reviews-summary__bar p { margin: 0; font-size: 15px; color: var(--c-text); }
.review-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.review-item {
  background: var(--c-surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xs);
  padding: var(--sp-4) var(--sp-5);
}
.review-item__head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-2); }
.review-item__stars { color: #f59e0b; letter-spacing: 2px; }
.review-item__foot { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-2); margin-top: var(--sp-2); }

.verified-pro {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899, #db2777); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-left: 8px; vertical-align: middle;
}
.verified-pro-mini {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899, #db2777); color: #fff;
  width: 22px; height: 22px; line-height: 22px;
  border-radius: 50%; font-size: 11px; text-align: center; vertical-align: middle;
}

/* ─── 15. CHAT I INTERVJUI ──────────────────────────────────────────────── */
.interview-list { list-style: none; padding: 0; }
.interview-row {
  background: var(--c-surface);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  margin-bottom: var(--sp-2);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-med) var(--ease);
}
.interview-row:hover { border-color: var(--ink-200); box-shadow: var(--sh-md); }
.interview-row--pending { border-left: 4px solid #d97706; }
.interview-row--accepted { border-left: 4px solid var(--c-success); }
.interview-row--rejected, .interview-row--cancelled, .interview-row--expired { border-left: 4px solid var(--c-danger); }
.interview-row__link { display: grid; grid-template-columns: 1fr auto auto; gap: var(--sp-2); align-items: center; color: inherit; }
.interview-row__link:hover { text-decoration: none; }
.interview-row .excerpt { grid-column: 1 / -1; font-size: 13px; color: var(--c-text-muted); margin: 0; }

.chat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-4); }
.chat-thread {
  background: var(--c-surface);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
  max-height: 60vh; overflow-y: auto;
  display: flex; flex-direction: column; gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-300) transparent;
}
.chat-msg { max-width: 80%; padding: var(--sp-3) var(--sp-4); border-radius: 18px; box-shadow: var(--sh-xs); }
.chat-msg--me { align-self: flex-end; background: var(--rose-100); border-bottom-right-radius: 6px; }
.chat-msg--them { align-self: flex-start; background: var(--ink-50); border: 1px solid var(--ink-100); border-bottom-left-radius: 6px; }
.chat-msg header { font-size: 12px; margin-bottom: var(--sp-1); color: var(--c-text-muted); }
.chat-msg p { margin: 0; }
.chat-compose { display: flex; gap: var(--sp-2); align-items: flex-end; }
.chat-compose .textarea { min-height: 60px; }
.action-bar { background: var(--c-info-bg); border: 1px solid rgba(3, 105, 161, .12); padding: var(--sp-4); border-radius: var(--r-lg); margin-bottom: var(--sp-4); }
.action-bar h3 { margin-top: 0; }
.respond-form { display: grid; gap: var(--sp-2); }
.cancel-form { margin-top: var(--sp-3); text-align: right; }

.chat-status { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; margin-top: 4px; }
.chat-status--online { background: #dcfce7; color: #166534; }
.chat-status--connecting, .chat-status--warn { background: #fef3c7; color: #92400e; }
.chat-status--error { background: #fee2e2; color: #991b1b; }
.chat-typing { font-size: 12px; color: var(--c-text-muted); font-style: italic; height: 16px; visibility: hidden; margin: 4px 0; }
.meeting-cta { margin: 12px 0; padding: 12px; background: var(--rose-50); border: 1px solid var(--rose-100); border-radius: var(--r-md); text-align: center; }

/* Notifikacije */
.notification-list { list-style: none; padding: 0; }
.notif {
  background: var(--c-surface);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-xs);
  margin-bottom: var(--sp-2);
  transition: border-color var(--t-fast) ease;
}
.notif:hover { border-color: var(--ink-200); }
.notif--unread { border-left: 4px solid var(--rose-500); background: var(--rose-50); }
.notif__link { color: inherit; }
.notif__link:hover { text-decoration: none; }

/* ─── 16. KALENDAR DOSTUPNOSTI ──────────────────────────────────────────── */
.avail-calendar-card { margin-bottom: var(--sp-5); }
.avail-legend { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-3); font-size: 13px; color: var(--c-text-muted); }
.avail-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot--available { background: #16a34a; }
.dot--extra { background: #0ea5e9; }
.dot--blocked { background: #dc2626; }
.dot--off { background: var(--ink-200); }
.avail-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; max-width: 540px; }
.avail-grid__head { text-align: center; font-size: 12px; font-weight: 600; color: var(--c-text-muted); padding: 4px 0; }
.avail-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 13px; font-weight: 600; position: relative;
}
.avail-cell--available { background: #dcfce7; color: #166534; }
.avail-cell--extra { background: #dbeafe; color: #075985; }
.avail-cell--blocked { background: #fee2e2; color: #991b1b; }
.avail-cell--off { background: var(--ink-100); color: var(--ink-500); }
.avail-cell.is-today { outline: 2px solid var(--rose-500); outline-offset: -2px; font-weight: 800; }
.avail-cell.is-past { opacity: 0.4; }
.avail-cell__num { line-height: 1; }

/* ─── 17. AUTH I LEAD STRANICE ──────────────────────────────────────────── */
.page--account .site-main, .account-page { padding-top: var(--sp-7); }
.account-section { padding: var(--sp-7) 0; }
.account-card {
  background: var(--c-surface);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--r-xl);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-md);
}

/* Lead / prijava stranica — split layout */
.lead-page {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--sp-6);
  align-items: start;
  max-width: 1060px; margin: 0 auto;
}
.lead-page__intro { position: sticky; top: calc(var(--header-h) + var(--sp-5)); }
.lead-page__intro h1 { margin-bottom: var(--sp-3); }
.lead-page__intro .lead { margin-bottom: var(--sp-5); }
.lead-page__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lead-page__bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--ink-700);
}
.lead-page__bullets svg {
  color: var(--rose-500); flex-shrink: 0;
  background: var(--rose-50); border-radius: 50%; padding: 3px;
  width: 22px; height: 22px;
}
.lead-page__form { margin-bottom: 0; }
@media (max-width: 880px) {
  .lead-page { grid-template-columns: 1fr; }
  .lead-page__intro { position: static; }
}

/* ─── 18. UTILITY ───────────────────────────────────────────────────────── */
.empty-state, .success-state {
  background: var(--c-surface);
  padding: var(--sp-7);
  border-radius: var(--r-xl);
  text-align: center;
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
}
.success-state__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--g-brand); color: #fff; font-size: 40px;
  margin-bottom: var(--sp-4);
  box-shadow: var(--sh-glow);
}
.lead { font-size: 18px; color: var(--c-text-soft); margin-bottom: var(--sp-5); line-height: 1.65; }
.link { color: var(--rose-600); font-weight: 600; }

/* ─── Language switcher — pill dropdown ─────────────────────────────────── */
.lang-switcher { position: relative; display: inline-flex; margin: 0 var(--sp-2); }
.lang-switcher__trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px;
  background: var(--c-surface);
  border: 1px solid var(--ink-200);
  border-radius: var(--r-pill);
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--c-text); cursor: pointer; line-height: 1;
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
}
.lang-switcher__trigger:hover { border-color: var(--rose-300); }
.lang-switcher__trigger:focus-visible { outline: 0; border-color: var(--rose-500); box-shadow: var(--ring); }
.lang-switcher__trigger[aria-expanded="true"] { border-color: var(--rose-500); background: var(--rose-50); }
.lang-switcher__trigger .lang-flag { font-size: 16px; line-height: 1; }
.lang-switcher__trigger .lang-code { letter-spacing: .04em; }
.lang-switcher__caret { transition: transform var(--t-fast) ease; }
.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__caret { transform: rotate(180deg); }
.lang-switcher__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 190px;
  background: var(--c-surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  list-style: none; margin: 0; padding: 6px;
  z-index: 100;
  animation: lang-menu-in .16s var(--ease);
}
.lang-switcher__menu[hidden] { display: none; }
@keyframes lang-menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-switcher__menu li { margin: 0; }
.lang-switcher__menu form { margin: 0; }
.lang-switcher__item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 9px 11px; border: 0; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--c-text);
  border-radius: var(--r-sm); cursor: pointer; text-align: left;
  transition: background var(--t-fast) ease;
}
.lang-switcher__item:hover { background: var(--rose-50); }
.lang-switcher__item.is-active { background: var(--rose-50); color: var(--rose-700); font-weight: 600; }
.lang-switcher__item .lang-flag { font-size: 18px; line-height: 1; }
.lang-switcher__item .lang-name { flex: 1; }
.lang-switcher__item .lang-check { color: var(--rose-600); font-weight: 700; }
