/* ============================================================================
   eFaktura.me — main.css
   Custom CSS, bez frameworka. Paleta izvedena iz logo.png (teal/blue).
   Mobile-first, BEM-ish konvencije, CSS varijable, modern layout (grid + flex).
   ============================================================================ */

/* -------------- Reset / base -------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1em; }
a { color: var(--brand-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--brand-secondary); text-decoration: underline; }
ul, ol { padding-left: 1.25em; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* -------------- Variables -------------- */
:root {
  /* Logo-derived palette */
  --brand-primary    : #2D7A8C;
  --brand-secondary  : #3FA9A9;
  --brand-dark       : #1F5A6B;
  --brand-accent     : #4A90A4;
  --brand-light      : #E8F2F4;

  /* Surfaces */
  --bg-white         : #FFFFFF;
  --bg-soft          : #F4F8FA;
  --bg-darker        : #1A2B3C;
  --border           : #E1E8ED;
  --border-strong    : #C8D4DC;

  /* Text */
  --text-primary     : #1A2B3C;
  --text-muted       : #5A6B7C;
  --text-on-dark     : #F4F8FA;

  /* States */
  --success          : #3FA9A9;
  --warning          : #E0A82E;
  --danger           : #D9534F;

  /* Shadows */
  --shadow-sm  : 0 1px 2px rgba(31, 90, 107, 0.06), 0 1px 3px rgba(31, 90, 107, 0.04);
  --shadow-md  : 0 4px 12px rgba(31, 90, 107, 0.08), 0 2px 4px rgba(31, 90, 107, 0.05);
  --shadow-lg  : 0 12px 28px rgba(31, 90, 107, 0.12), 0 4px 8px rgba(31, 90, 107, 0.05);
  --shadow-xl  : 0 24px 56px rgba(31, 90, 107, 0.18), 0 8px 16px rgba(31, 90, 107, 0.06);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Spacing & layout */
  --container: 1180px;
  --section-py: clamp(3rem, 7vw, 6rem);
}

/* -------------- Fonts --------------
   Inter i Manrope variable fontovi nisu uploadovani u assets/fonts/.
   Body koristi sistemske fontove (Segoe UI, system-ui) — daje moderan
   poslovan look bez 404 za fontove.
   Da uključiš Inter/Manrope: stavi inter-variable.woff2 i manrope-variable.woff2
   u assets/fonts/ i otkomentariši blokove ispod.
*/
/*
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2-variations');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-variable.woff2') format('woff2-variations');
  font-weight: 200 800; font-style: normal; font-display: swap;
}
*/

/* -------------- Utility -------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--brand-dark); color: white; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.section { padding: var(--section-py) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: linear-gradient(135deg, var(--brand-dark), #143a47); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--dark p { color: rgba(255,255,255,0.85); }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-muted); font-size: 1.075rem; margin: 0; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-primary); margin-bottom: 0.75rem;
}

/* -------------- Buttons -------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.85rem 1.5rem;
  font-weight: 600; font-size: 0.975rem;
  line-height: 1;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  background: transparent;
  text-decoration: none !important;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--brand-primary); color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-dark); color: white; box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--brand-light); color: var(--brand-dark); border-color: var(--brand-light);
}
.btn-secondary:hover { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }
.btn-outline {
  border-color: var(--brand-primary); color: var(--brand-primary);
}
.btn-outline:hover { background: var(--brand-primary); color: white; }
.btn-ghost { color: var(--brand-dark); }
.btn-ghost:hover { background: var(--brand-light); }
.btn-sm  { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn-lg  { padding: 1.05rem 1.75rem; font-size: 1.0625rem; }
.btn-block { display: flex; width: 100%; }

/* Submit dugme na kontaktu — ikona + tekst, sa hover-lift i sending stanjem */
.btn-submit {
  gap: 0.65em;
  letter-spacing: 0.01em;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(45,122,140,0.25);
  position: relative;
}
.btn-submit .btn-icon {
  display: inline-flex; align-items: center;
  transition: transform 0.2s ease;
}
.btn-submit:hover .btn-icon { transform: translateX(3px); }
.btn-submit:disabled { opacity: 0.7; cursor: wait; transform: none; box-shadow: var(--shadow-sm); }
.btn-submit.is-sending .btn-icon {
  animation: btnSendingSpin 1s linear infinite;
}
@keyframes btnSendingSpin {
  0%   { transform: rotate(0deg) translateX(0); }
  50%  { transform: rotate(180deg) translateX(2px); }
  100% { transform: rotate(360deg) translateX(0); }
}

/* -------------- Header -------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 1.25rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.65rem;
  color: var(--brand-dark) !important; text-decoration: none !important;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.25rem;
}
.logo:hover { color: var(--brand-primary) !important; }
.logo img { border-radius: 8px; }
.logo-dot { color: var(--brand-secondary); font-weight: 600; }

.main-nav { display: contents; }
@media (min-width: 980px) { .main-nav { display: block; flex: 1; } }

.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: none;
}
@media (min-width: 980px) {
  .nav-list {
    display: flex; gap: 0.5rem; justify-content: center; align-items: center;
  }
}
.nav-list a {
  display: inline-block; padding: 0.55rem 0.9rem;
  color: var(--text-primary); text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-list a:hover { background: var(--brand-light); color: var(--brand-dark); }
.nav-list a.is-active { color: var(--brand-primary); }
.nav-list a.is-active::after {
  content: ''; display: block; height: 2px; width: 60%; margin: 4px auto -8px;
  background: var(--brand-secondary); border-radius: 2px;
}

.header-actions {
  display: flex; align-items: center; gap: 0.6rem;
}
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted) !important;
  text-decoration: none !important;
}
.lang-switch:hover { background: var(--brand-light); color: var(--brand-dark) !important; }
.lang-switch .lang-current { color: var(--brand-dark); }
.lang-switch .lang-arrow  { opacity: 0.5; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--brand-dark); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 980px) { .nav-toggle { display: none; } }

@media (max-width: 979px) {
  /* Mobilni dropdown — card panel sa fade+slide animacijom */
  .nav-list.is-open {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0.75rem; right: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 0.6rem;
    box-shadow: 0 12px 32px rgba(31,90,107,0.18), 0 4px 8px rgba(31,90,107,0.06);
    animation: navSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-list.is-open li {
    margin: 0;
    border-bottom: 1px solid var(--bg-soft);
  }
  .nav-list.is-open li:last-child { border-bottom: 0; }
  .nav-list.is-open a {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.95rem 1rem;
    font-size: 0.975rem; font-weight: 600;
    color: var(--text-primary);
    border-radius: var(--r-md);
    transition: background 0.12s, color 0.12s, transform 0.12s;
  }
  .nav-list.is-open a::before {
    content: '';
    width: 4px; height: 18px;
    background: transparent;
    border-radius: 2px;
    transition: background 0.12s;
  }
  .nav-list.is-open a::after {
    content: '→';
    margin-left: auto;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s, transform 0.15s;
    font-size: 1.1rem;
  }
  .nav-list.is-open a:hover,
  .nav-list.is-open a:focus-visible {
    background: var(--bg-soft);
    color: var(--brand-primary);
    text-decoration: none;
  }
  .nav-list.is-open a:hover::after,
  .nav-list.is-open a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--brand-primary);
  }
  .nav-list.is-open a.is-active {
    background: linear-gradient(135deg, rgba(63,169,169,0.10), rgba(45,122,140,0.06));
    color: var(--brand-dark);
  }
  .nav-list.is-open a.is-active::before {
    background: var(--brand-primary);
  }
  .nav-list.is-open a.is-active::after {
    content: none;
  }

  /* CTA dugme unutar mobilnog menija — vraćamo ga ovdje kao zadnji red */
  .nav-list.is-open::after {
    content: '';
    display: block;
    height: 0.4rem;
  }

  /* === Mobile header layout ===
     [Logo] .................. [EN] [Hamburger]
     - Skloni CTA "Zatraži ponudu"
     - Lang switcher samo target jezik (npr. "EN")
     - Hamburger sasvim desno
  */
  .header-inner { gap: 0.4rem; padding: 0.6rem 0.85rem; }
  .header-actions .btn { display: none !important; }

  .logo           { order: 1; }
  .header-actions { order: 2; }
  .nav-toggle     { order: 3; margin-left: 0; }

  .header-actions { gap: 0.3rem; }
  .lang-switch {
    padding: 0.35rem 0.55rem;
  }
  .lang-switch .lang-current,
  .lang-switch .lang-arrow { display: none; }
  .lang-switch .lang-target {
    display: inline-block;
    padding: 0.25rem 0.55rem;
    background: var(--brand-light);
    color: var(--brand-dark) !important;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 0.825rem;
  }
}

/* -------------- Hero -------------- */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-white) 70%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,169,169,0.15), transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
}
.hero h1 { margin-bottom: 1rem; }
.hero-sub { font-size: 1.125rem; color: var(--text-muted); max-width: 36em; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-meta { font-size: 0.875rem; color: var(--text-muted); }
.hero-meta strong { color: var(--brand-dark); font-weight: 700; }
.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary));
  padding: 1.5rem;
}
.hero-mockup {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font-family: 'Inter', sans-serif;
}
.hero-mockup-bar {
  background: #F4F5F7;
  border-bottom: 1px solid #E4E7EB;
  padding: 0.55rem 0.85rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.hero-mockup-bar .dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.hero-mockup-bar .dot-r { background: #FF5F57; }
.hero-mockup-bar .dot-y { background: #FEBC2E; }
.hero-mockup-bar .dot-g { background: #28C840; }
.hero-mockup-url {
  margin-left: 0.75rem;
  font-size: 0.75rem; color: #6B7280;
  background: white;
  border: 1px solid #E4E7EB; border-radius: 4px;
  padding: 0.2rem 0.6rem;
  flex: 1; max-width: 280px;
  text-align: center;
}
.hero-mockup-body {
  display: grid; grid-template-columns: 130px 1fr;
  min-height: 280px;
}
.hero-mockup-side {
  background: #F8FAFB;
  border-right: 1px solid #E4E7EB;
  padding: 0.85rem 0.6rem;
  font-size: 0.75rem;
}
.m-logo {
  display: flex; align-items: center; gap: 0.35rem;
  color: var(--brand-primary); font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid #E4E7EB;
}
.m-logo-icon { display: inline-flex; }
.m-nav-item {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.5rem;
  border-radius: 5px;
  color: #5A6B7C; margin-bottom: 0.15rem;
}
.m-nav-item.is-active {
  background: var(--brand-primary);
  color: white; font-weight: 600;
}
.hero-mockup-main { padding: 1rem; }
.m-h1 {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--brand-dark);
  margin-bottom: 0.75rem;
}
.m-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  margin-bottom: 1rem;
}
.m-stat {
  background: #F8FAFB; border: 1px solid #E4E7EB;
  border-radius: 6px; padding: 0.55rem;
}
.m-stat-label { font-size: 0.65rem; color: #6B7280; }
.m-stat-num {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--brand-dark);
  margin: 0.15rem 0;
}
.m-stat-pos { font-size: 0.65rem; color: var(--brand-secondary); font-weight: 600; }
.m-stat-ok  { font-size: 0.65rem; color: var(--brand-secondary); font-weight: 600; }
.m-chart {
  display: flex; align-items: flex-end; gap: 4px;
  height: 90px; padding-top: 8px;
  border-top: 1px solid #E4E7EB;
}
.m-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-secondary), var(--brand-primary));
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
}
.m-bar.is-current { opacity: 1; box-shadow: 0 0 0 2px rgba(45,122,140,0.18); }

/* -------------- Trust bar -------------- */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
}
.trust-list li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-muted); font-weight: 500;
}
.trust-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-secondary); flex: none;
}

/* -------------- Cards (features, news, pricing) -------------- */
.cards-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  height: 100%;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.card-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--brand-light);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-primary); margin-bottom: 1rem;
  font-size: 1.5rem;
}
.card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }
.card-link { margin-top: 1rem; font-weight: 600; font-size: 0.9rem; }

/* News cards */
.news-card { padding: 0; overflow: hidden; }
.news-card-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.news-card-thumb svg {
  width: 100%; height: 100%;
  display: block;
}
.news-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.825rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.125rem; }
.news-card p { flex: 1; }

/* -------------- Pricing -------------- */
.pricing-toggle {
  display: inline-flex; gap: 0.25rem;
  background: white; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 0.35rem; box-shadow: var(--shadow-sm);
  margin: 0 auto 2.5rem; flex-wrap: wrap;
  justify-content: center;
}
.pricing-toggle-wrap { text-align: center; }
.pricing-toggle button {
  border: 0; background: transparent;
  padding: 0.55rem 1.25rem;
  font-weight: 600; font-size: 0.9rem;
  border-radius: var(--r-pill);
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.pricing-toggle button:hover { color: var(--brand-dark); }
.pricing-toggle button.is-active {
  background: var(--brand-primary); color: white;
}

.pricing-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.pricing-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.is-featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand-primary); color: white;
  padding: 0.25rem 0.85rem; border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.pricing-name { font-size: 1.5rem; margin: 0 0 0.25rem; }
.pricing-for  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
/* Pricing — bogatiji prikaz cijene sa popustom istaknutim */
.pricing-price-block {
  background: linear-gradient(135deg, rgba(63,169,169,0.06), rgba(45,122,140,0.04));
  border: 1px solid var(--brand-light);
  border-radius: var(--r-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.pricing-card.is-featured .pricing-price-block {
  background: linear-gradient(135deg, rgba(63,169,169,0.12), rgba(45,122,140,0.08));
  border-color: var(--brand-secondary);
}
.pricing-amount {
  display: flex; align-items: baseline; gap: 0.35rem; flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.pricing-amount .num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 3.25rem; color: var(--brand-dark); line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-amount .unit {
  color: var(--text-muted); font-weight: 500;
  font-size: 0.875rem;
}
.pricing-old {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.875rem; color: var(--text-muted);
  flex-wrap: wrap;
}
.pricing-old .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(217,83,79,0.7);
  text-decoration-thickness: 2px;
  color: var(--text-muted);
  font-weight: 600;
}
.pricing-old .badge {
  background: linear-gradient(135deg, var(--danger), #C9302C);
  color: white;
  padding: 0.2rem 0.65rem; border-radius: var(--r-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(217,83,79,0.25);
}
.pricing-save {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 0.65rem;
  background: white;
  border: 1px dashed var(--brand-secondary);
  padding: 0.35rem 0.7rem; border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 600;
  color: var(--brand-dark);
}
.pricing-save strong { color: var(--brand-primary); }
.pricing-no-disc {
  display: inline-block;
  font-size: 0.825rem; color: var(--text-muted);
  opacity: 0.75;
  margin-top: 0.4rem;
}

/* Force 2 columns on desktop for "addons" cards */
.cards-grid--cols-2 {
  grid-template-columns: 1fr !important;
}
@media (min-width: 760px) {
  .cards-grid--cols-2 {
    grid-template-columns: 1fr 1fr !important;
  }
}
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.pricing-features li {
  padding: 0.45rem 0 0.45rem 1.75rem;
  position: relative;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--brand-secondary); font-weight: 700;
}
.pricing-features li.is-off { color: var(--text-muted); }
.pricing-features li.is-off::before { content: '–'; color: var(--text-muted); }
.pricing-card .btn { margin-top: auto; }

/* -------------- Forms -------------- */
.form-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .form-grid { grid-template-columns: 1.4fr 1fr; }
}
.form-card, .info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-weight: 600; font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
}
.form-row .required { color: var(--danger); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font: inherit;
  color: var(--text-primary);
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(45,122,140,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row.has-error .form-input,
.form-row.has-error .form-select,
.form-row.has-error .form-textarea { border-color: var(--danger); }
.form-error-msg {
  display: none; color: var(--danger); font-size: 0.825rem; margin-top: 0.25rem;
}
.form-row.has-error .form-error-msg { display: block; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 580px) { .form-cols { grid-template-columns: 1fr; } }
.form-honeypot {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  width: 1px; height: 1px; opacity: 0;
}
.form-status {
  margin-top: 1rem; padding: 0.85rem 1rem;
  border-radius: var(--r-md); font-size: 0.925rem;
  display: none;
}
.form-status.is-success {
  display: block; background: #E8F5F1; color: #1F5A6B; border: 1px solid var(--brand-secondary);
}
.form-status.is-error {
  display: block; background: #FDECEA; color: #8C2624; border: 1px solid #F1AEAB;
}

.info-card h2 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
  color: var(--text-primary);
}
.info-list li:last-child { border-bottom: 0; }
.info-list strong { display: block; color: var(--brand-dark); margin-bottom: 0.15rem; font-size: 0.825rem; text-transform: uppercase; letter-spacing: 0.04em; }
.info-list a { color: var(--brand-primary); font-weight: 600; }

/* -------------- FAQ -------------- */
.faq {
  display: grid; gap: 0.75rem;
  max-width: 800px; margin: 0 auto;
}
.faq details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 1.25rem;
}
.faq details[open] { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600; color: var(--brand-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--brand-primary);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--brand-primary); }
.faq details > p {
  padding-bottom: 1.1rem;
  color: var(--text-muted); margin: 0;
}

/* -------------- Promo banner -------------- */
.promo {
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: white;
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; overflow: hidden;
}
@media (min-width: 720px) { .promo { grid-template-columns: 2fr 1fr; } }
.promo::before {
  content: '60%'; position: absolute;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(8rem, 18vw, 14rem);
  right: -20px; top: 50%; transform: translateY(-50%);
  opacity: 0.12; color: white; line-height: 1;
  pointer-events: none;
}
.promo h2 { color: white; margin: 0 0 0.5rem; }
.promo p { color: rgba(255,255,255,0.92); margin: 0 0 1.25rem; }
.promo .btn { background: white; color: var(--brand-dark); border-color: white; position: relative; z-index: 2; }
.promo .btn:hover { background: var(--brand-dark); color: white; }

/* -------------- CTA block -------------- */
.cta-block {
  text-align: center;
  background: var(--bg-darker);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  border-radius: var(--r-lg);
}
.cta-block h2 { color: white; }
.cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }
.cta-block .btn { box-shadow: var(--shadow-lg); }

/* -------------- Footer -------------- */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }
.footer-col h4 {
  color: white; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 0.3rem 0; font-size: 0.925rem; }
.footer-col a {
  color: rgba(255,255,255,0.75) !important; text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: white !important; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: white !important; font-family: 'Manrope', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  text-decoration: none !important; margin-bottom: 1rem;
}
.footer-logo img { border-radius: 6px; }
.footer-tagline { margin: 0 0 1.25rem; max-width: 28em; }
.footer-built-by {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.06);
  border-radius: var(--r-md); margin-top: 0.5rem;
  font-size: 0.825rem;
}
.footer-built-by:hover { background: rgba(255,255,255,0.10); }
.footer-built-label { color: rgba(255,255,255,0.6) !important; }
.footer-built-by img { filter: brightness(0) invert(1); height: 24px; width: auto; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.825rem; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* === Footer centriran na mobilnom === */
@media (max-width: 719px) {
  .footer-grid { gap: 2rem; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col ul { padding: 0; }
  .footer-col li { padding: 0.35rem 0; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { justify-content: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-built-by { margin-left: auto; margin-right: auto; }
  .footer-contact { list-style: none; padding: 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-legal { justify-content: center; gap: 0.85rem 1.25rem; }
}

/* -------------- Page hero (non-home) --------------
   Aurora sweep — horizontalni pojas brand boja koji se sporo pomijera
   lijevo↔desno preko hero-a. Diskretno, profesionalno, fintech feel.
*/
.page-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(170deg, var(--bg-soft) 0%, var(--bg-white) 100%);
  box-shadow: inset 0 -90px 80px -30px var(--bg-white);
}

/* === Sloj 1: aurora sweep === */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -20% -40%;
  z-index: -2;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 25%,
      rgba(74,144,164,0.10) 35%,
      rgba(63,169,169,0.22) 45%,
      rgba(45,122,140,0.26) 50%,
      rgba(63,169,169,0.22) 55%,
      rgba(74,144,164,0.10) 65%,
      transparent 75%,
      transparent 100%
    );
  filter: blur(28px) saturate(1.2);
  animation: heroAurora 40s ease-in-out infinite alternate;
  pointer-events: none;
}

/* === Sloj 2: dot grid (statičan, fintech detalj) === */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,90,107,0.16) 1px, transparent 0);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at center, black 15%, transparent 90%);
          mask-image: radial-gradient(ellipse 85% 70% at center, black 15%, transparent 90%);
  pointer-events: none;
}

.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 56ch; margin: 0 auto 1.5rem; color: var(--text-muted); font-size: 1.075rem; }

/* Akcentni "eyebrow" pill badge */
.page-hero .eyebrow {
  position: relative;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  background: rgba(63,169,169,0.10);
  border: 1px solid rgba(63,169,169,0.22);
  border-radius: var(--r-pill);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Aurora sweep — sporo plovi lijevo↔desno preko 40s, plus blagi blur dah */
@keyframes heroAurora {
  0% {
    transform: translateX(-25%) skewX(-6deg);
    filter: blur(28px) saturate(1.2);
  }
  50% {
    filter: blur(34px) saturate(1.35);
  }
  100% {
    transform: translateX(25%) skewX(-6deg);
    filter: blur(28px) saturate(1.2);
  }
}

/* Reduce motion — aurora se zaustavlja u sredini */
@media (prefers-reduced-motion: reduce) {
  .page-hero::before {
    animation: none;
    transform: skewX(-6deg);
  }
}

/* -------------- About pillars -------------- */
.pillars {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pillar {
  text-align: center; padding: 1.5rem;
}
.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin-bottom: 1rem;
}

/* -------------- ISO cards -------------- */
.iso-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.iso-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem;
  position: relative; overflow: hidden;
  display: block;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.iso-card:hover,
a.iso-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-secondary);
}
.iso-card::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--brand-light);
  top: -100px; right: -100px;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
a.iso-card:hover::before {
  transform: scale(1.15) translate(-10px, 10px);
  opacity: 0.7;
}
.iso-card > * { position: relative; }
.iso-badge {
  display: inline-block;
  background: var(--brand-secondary); color: white;
  padding: 0.35rem 0.75rem; border-radius: var(--r-sm);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.iso-card h3 { margin-bottom: 0.5rem; color: var(--brand-dark); }
.iso-card p { color: var(--text-muted); }
.iso-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  color: var(--brand-primary);
  font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.01em;
}
.iso-link svg { transition: transform 0.18s ease; }
a.iso-card:hover .iso-link { color: var(--brand-dark); }
a.iso-card:hover .iso-link svg { transform: translateX(4px); }

/* -------------- Stats / metric ribbon -------------- */
.stats {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat { padding: 1.5rem; }
.stat-num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--brand-primary); line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { color: var(--text-muted); font-size: 0.95rem; }

/* -------------- Map / contact info -------------- */
.contact-map {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Na desktop-u: info-card popunjava visinu forme (CSS Grid stretch).
   Mapa raste da iskoristi prazan prostor ispod kontakt podataka. */
@media (min-width: 880px) {
  .info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .info-card .contact-map {
    flex: 1 1 auto;
    aspect-ratio: auto;
    min-height: 320px;
    margin-top: 1.5rem !important;
  }
  .info-card .contact-map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px;
  }
}

/* -------------- 404 -------------- */
.not-found {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.not-found .num {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(6rem, 14vw, 10rem);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}

/* -------------- Data Center sekcija (Naša infrastruktura) -------------- */
.dc-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .dc-grid { grid-template-columns: 1.4fr 1fr; gap: 3rem; }
}
.dc-eyebrow { color: var(--brand-secondary); }
.dc-h2 { color: white !important; margin-bottom: 1rem; }
.dc-p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.dc-p strong { color: white; }
.dc-checks {
  list-style: none; padding: 0; margin: 0 0 1.75rem;
  display: grid; gap: 0.6rem;
}
.dc-checks li {
  display: flex; align-items: center; gap: 0.6rem;
  color: white; font-weight: 500; font-size: 0.95rem;
}
.dc-check-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(63,169,169,0.18);
  color: var(--brand-secondary);
  border-radius: 50%;
  flex: 0 0 28px;
}
.dc-cta { display: inline-flex; }

.dc-visual {
  text-align: center;
  color: white;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(63,169,169,0.10), rgba(45,122,140,0.05));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.dc-visual::before {
  content: '';
  position: absolute; inset: -50% -10% auto auto;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,169,169,0.22), transparent 65%);
  pointer-events: none;
}
.dc-shield {
  color: var(--brand-secondary);
  display: inline-flex; justify-content: center; align-items: center;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.dc-shield svg { width: 80px; height: 80px; }
.dc-city {
  font-family: 'Manrope', 'Inter', sans-serif; font-weight: 800;
  font-size: 2rem; line-height: 1.1;
  color: white;
  position: relative; z-index: 1;
}
.dc-country {
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  position: relative; z-index: 1;
}

/* === Mobilna preuredjenost — kompaktno i centrirano === */
@media (max-width: 879px) {
  .dc-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .dc-grid { gap: 1.5rem; }
  .dc-content { text-align: center; }
  .dc-h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .dc-p {
    font-size: 0.975rem; line-height: 1.65;
    margin-left: auto; margin-right: auto;
    max-width: 38em;
  }
  .dc-checks {
    margin-left: auto; margin-right: auto;
    max-width: 280px;
    text-align: left;
  }
  .dc-cta { display: inline-flex; }
  .dc-visual {
    padding: 1.5rem 1rem;
    order: -1; /* gore na mobilnom */
    display: flex; flex-direction: column; align-items: center;
    background: linear-gradient(135deg, rgba(63,169,169,0.14), rgba(45,122,140,0.06));
  }
  .dc-shield svg { width: 56px; height: 56px; }
  .dc-shield { margin-bottom: 0.4rem; }
  .dc-city { font-size: 1.5rem; }
  .dc-country { font-size: 0.8rem; }
}

/* -------------- Cookie consent banner -------------- */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 200;
  max-width: 720px; margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.5rem;
  display: none;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.is-visible {
  display: block; transform: translateY(0); opacity: 1;
}
.cookie-banner h3 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--brand-dark); }
.cookie-banner p { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 1rem; }
.cookie-banner-actions {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.cookie-banner .btn { font-size: 0.875rem; padding: 0.55rem 1rem; }
.cookie-banner a { color: var(--brand-primary); font-weight: 600; }

.cookie-prefs-btn {
  background: transparent; border: 0;
  color: rgba(255,255,255,0.6); cursor: pointer;
  font: inherit; font-size: 0.825rem;
  padding: 0; text-decoration: underline;
}
.cookie-prefs-btn:hover { color: white; }

/* -------------- SVG icon styling -------------- */
.card-icon svg, .pillar-icon svg { color: var(--brand-primary); }
.pillar-icon { background: linear-gradient(135deg, var(--brand-light), rgba(63,169,169,0.15)); }
.card:hover .card-icon { background: var(--brand-primary); color: white; transform: scale(1.08); transition: all 0.25s; }
.card-icon { transition: all 0.25s; }

/* -------------- Reveal animation -------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

/* -------------- Count-up stat -------------- */
.stat-num[data-count] { display: inline-block; }
.stat-num.is-counting { color: var(--brand-primary); }

/* -------------- Hero subtle gradient float -------------- */
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,122,140,0.10), transparent 65%);
  bottom: -150px; left: -100px; pointer-events: none;
  animation: heroFloat 14s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, -20px) scale(1.1); }
}

/* -------------- Smooth lift on pricing cards -------------- */
.pricing-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.is-featured:hover { transform: scale(1.02) translateY(-4px); }

/* -------------- Quick-order komponenta -------------- */
.qo-steps {
  display: flex; align-items: stretch; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 960px; margin: 0 auto 2rem;
}
.qo-step {
  flex: 1 1 200px; max-width: 280px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1rem;
  text-align: center;
}
.qo-step h3 { font-size: 1rem; margin: 0.4rem 0 0.35rem; }
.qo-step p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.qo-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-primary); color: white;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 1.1rem;
}
.qo-step-arrow {
  display: flex; align-items: center;
  color: var(--brand-secondary);
  flex: 0 0 auto;
}
@media (max-width: 720px) {
  .qo-step-arrow { display: none; }
  .qo-step { max-width: none; width: 100%; }
}

.qo-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 960px; margin: 0 auto;
}
.qo-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.qo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.qo-card.is-featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}
.qo-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--brand-primary); color: white;
  padding: 0.2rem 0.7rem; border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.qo-name { font-size: 1.2rem; margin: 0 0 0.15rem; }
.qo-for  { color: var(--text-muted); font-size: 0.825rem; margin: 0 0 1rem; min-height: 2.4em; }
.qo-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 0.5rem; margin-bottom: 0.35rem; flex-wrap: wrap;
}
.qo-price {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 2.25rem; color: var(--brand-dark); line-height: 1;
}
.qo-price-unit {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
  margin-left: 0.3rem;
}
.qo-old { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.qo-strike { text-decoration: line-through; color: var(--text-muted); font-size: 0.825rem; font-weight: 600; }
.qo-disc-badge {
  background: linear-gradient(135deg, var(--danger), #C9302C);
  color: white;
  padding: 0.1rem 0.5rem; border-radius: var(--r-pill);
  font-size: 0.7rem; font-weight: 700;
}
.qo-term-note { font-size: 0.75rem; color: var(--text-muted); margin: 0.25rem 0 1.25rem; }
.qo-card .btn { margin-top: auto; }

/* -------------- Print -------------- */
@media print {
  .site-header, .site-footer, .cta-block, .promo, .form-card, .cookie-banner { display: none; }
}

/* -------------- Reduced motion -------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
