:root {
  --bg: #f4f3ec;
  --surface: #fbfaf5;
  --surface-strong: #ffffff;
  --ink: #162317;
  --muted: #5f6d62;
  --line: rgba(22, 35, 23, 0.1);
  --green-950: #0f1d12;
  --green-900: #183420;
  --green-800: #24542d;
  --green-700: #2f6f39;
  --green-500: #76c043;
  --green-400: #97d65e;
  --gold: #cfb06f;
  --shadow-sm: 0 12px 34px rgba(15, 29, 18, 0.08);
  --shadow-lg: 0 28px 80px rgba(15, 29, 18, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(118, 192, 67, 0.12), transparent 28%),
    linear-gradient(180deg, #f7f6f0 0%, var(--bg) 100%);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(16px);
  border-color: rgba(22, 35, 23, 0.06);
  box-shadow: 0 16px 44px rgba(15, 29, 18, 0.08);
}
.header-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  background: var(--green-950);
  flex: 0 0 auto;
}
.brand-copy {
  display: grid;
  gap: 0.1rem;
}
.brand-copy strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}
.brand-copy small {
  font-size: 0.74rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-cta {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(24, 52, 32, 0.08);
  padding: 0.7rem;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(24, 52, 32, 0.98), rgba(30, 73, 40, 0.95) 56%, rgba(118, 192, 67, 0.92));
  z-index: -3;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 62%);
  filter: blur(10px);
  z-index: -2;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}
.orb-a {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(151, 214, 94, 0.32), transparent 70%);
}
.orb-b {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(207, 176, 111, 0.18), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}
.hero-copy {
  color: #fff;
  padding: 4rem 0;
}
.eyebrow,
.section-kicker,
.mini-label,
.focus-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}
.eyebrow,
.section-kicker,
.mini-label { color: var(--gold); }
.hero h1,
.section-head h2,
.positioning-copy h2,
.contact-copy h2,
.focus-card h3 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 12ch;
}
.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--green-950);
  box-shadow: 0 18px 34px rgba(118, 192, 67, 0.28);
}
.btn-secondary {
  border-color: rgba(255,255,255,0.24);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
/* btn-secondary na svetlom pozadi (pillar pages, hero, sluzby grid) */
.hero-copy .btn-secondary,
.section:not(.process):not(.uvo):not(.contact):not(.partneri):not(.faq) .btn-secondary {
  color: var(--ink);
  background: rgba(22, 35, 23, 0.06);
  border-color: rgba(22, 35, 23, 0.18);
}
.hero-copy .btn-secondary:hover,
.section:not(.process):not(.uvo):not(.contact):not(.partneri):not(.faq) .btn-secondary:hover {
  background: rgba(22, 35, 23, 0.12);
}
.btn-full { width: 100%; }

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hero-metrics article {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 1.15rem;
}
.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}
.hero-metrics span {
  display: block;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-side {
  padding: 4rem 0;
}
.brand-panel {
  border-radius: 30px;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.brand-panel-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.brand-panel-top img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-panel-top strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.1rem;
  line-height: 1.3;
}
.hero-highlight-card {
  margin-top: 1.25rem;
  border-radius: 24px;
  background: rgba(15, 29, 18, 0.2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem;
}
.tag-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.tag-list li {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.09);
  font-size: 0.92rem;
  font-weight: 600;
}
.hero-contact-strip {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}
.hero-contact-strip a {
  display: block;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  font-weight: 700;
}

.trust-strip {
  background: #fff;
  border-top: 1px solid rgba(22, 35, 23, 0.06);
  border-bottom: 1px solid rgba(22, 35, 23, 0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  padding: 1.6rem 0;
  color: var(--muted);
}
.trust-grid > div {
  display: grid;
  gap: 0.25rem;
}
.trust-grid strong {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.trust-grid span {
  font-size: 0.92rem;
  line-height: 1.5;
}

.section { padding: 6rem 0; }
.section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2,
.positioning-copy h2,
.contact-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); margin: 0.7rem 0 1rem; }
.section-head p,
.positioning-copy p,
.contact-copy p { color: var(--muted); font-size: 1.04rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  background: linear-gradient(180deg, rgba(36, 84, 45, 0.98), rgba(24, 52, 32, 0.98));
  color: #fff;
}
.service-card.featured p { color: rgba(255,255,255,0.78); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(118, 192, 67, 0.16);
  color: var(--green-800);
  font-weight: 800;
}
.service-card.featured .service-icon {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.service-card h3 { margin: 0 0 0.6rem; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); }

.positioning {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.9));
}
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 600;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  box-shadow: 0 0 0 6px rgba(118, 192, 67, 0.14);
  transform: translateY(-50%);
}
.positioning-panel {
  display: grid;
  gap: 1rem;
}
.focus-card {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--green-900), var(--green-800));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.focus-card h3 {
  margin: 0.8rem 0 0.8rem;
  font-size: 1.9rem;
}
.focus-card p { margin: 0; color: rgba(255,255,255,0.78); }
.muted-card {
  background: rgba(255,255,255,0.82);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.muted-card p { color: var(--muted); }

.references-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}
.reference-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  background: #dfe8de;
}
.reference-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reference-card:hover img { transform: scale(1.05); }
.reference-featured {
  grid-row: span 2;
  min-height: 100%;
}
.reference-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, rgba(8,18,10,0), rgba(8,18,10,0.78));
  color: #fff;
}
.reference-copy span {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.reference-copy h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}
.reference-copy p {
  margin: 0.5rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.process {
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: #fff;
}
.light .section-kicker,
.light h2,
.process .section-head p { color: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}
.process-card strong {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
}
.process-card h3 { margin: 0 0 0.7rem; }
.process-card p { margin: 0; color: rgba(255,255,255,0.76); }

/* Process cards na svetlom pozadi (pillar pages) - prepise dark default */
.section:not(.process) .process-card {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.section:not(.process) .process-card h3 { color: var(--ink); }
.section:not(.process) .process-card p { color: var(--muted); }

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.contact-card {
  display: block;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 20px;
  padding: 1rem 1.1rem;
}
.contact-card span,
.form-note { color: var(--muted); }
.contact-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}
.contact-form {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 1.6rem;
}
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form span {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 35, 23, 0.12);
  background: #fff;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-note { margin: 1rem 0 0; font-size: 0.92rem; }
.form-note-ok { color: var(--green-700); font-weight: 600; }
.form-note-err { color: #c0392b; font-weight: 600; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  background: #101b12;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2rem;
}
.footer-brand { color: #fff; margin-bottom: 1rem; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 0.65rem; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
#toTop {
  color: var(--gold);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Hero photo (nahradzuje brand-panel) === */
.hero-photo {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 4/5;
  background: rgba(0,0,0,0.2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: rgba(15, 29, 18, 0.78);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-photo-tag strong {
  display: block;
  margin-top: 0.35rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

/* === Services grid s 4 stlpcami === */
.services-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* === Case studies === */
.case-studies {
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
}
.case-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.case-card:last-child { margin-bottom: 0; }
.case-card.reverse {
  grid-template-columns: 1fr 1.05fr;
}
.case-card.reverse .case-media {
  order: 2;
}
.case-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #dfe8de;
}
.case-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-media.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: transparent;
  aspect-ratio: 1/1;
}
.case-media.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.case-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  color: var(--green-950);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(118, 192, 67, 0.32);
}
.case-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.7rem 0 1rem;
}
.case-body p {
  color: var(--muted);
  margin: 0 0 1.2rem;
}
.case-pills {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.case-pills li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(118, 192, 67, 0.14);
  color: var(--green-800);
  font-size: 0.84rem;
  font-weight: 700;
}
.case-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.case-thumbs img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

/* === Pricing table (light variant — pre service pillar pages) === */
.pricing-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  margin: 0 auto;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1.6fr 1fr;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row.pricing-head {
  background: var(--green-900);
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.pricing-row.pricing-head span { color: var(--gold); }
.pricing-row .pricing-type {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.pricing-row .pricing-dim {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.pricing-row .pricing-stone {
  color: var(--muted);
  font-size: 0.92rem;
}
.pricing-row .pricing-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-800);
  text-align: right;
}
.pricing-note {
  margin-top: 1.4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 920px) {
  .pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
    padding: 1rem;
  }
  .pricing-row .pricing-stone { grid-column: 1 / -1; order: 3; font-size: 0.85rem; }
  .pricing-row .pricing-value { text-align: left; grid-column: 1 / -1; order: 4; padding-top: 0.4rem; }
  .pricing-head { display: none; }
}

/* === Cookie banner (GDPR) === */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  padding: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  contain: layout style;
  will-change: opacity, transform;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(11, 26, 14, 0.18);
  padding: 1.2rem 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}
.cookie-banner-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.cookie-banner-text p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.cookie-banner-link {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}
.cookie-banner-actions .cookie-btn-reject {
  background: rgba(22, 35, 23, 0.06);
  color: var(--ink);
  border: 1px solid rgba(22, 35, 23, 0.15);
}
@media (max-width: 720px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions .btn {
    flex: 1;
  }
}

/* === ÚVO sekcia === */
.uvo {
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: #fff;
}
.uvo-table {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.uvo-row {
  display: grid;
  grid-template-columns: 1fr 2.2fr 2fr 1fr;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}
.uvo-row:last-child { border-bottom: 0; }
.uvo-head {
  background: rgba(255,255,255,0.06);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--gold);
}
.uvo-row .uvo-date {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  font-size: 0.92rem;
}
.uvo-row .uvo-subject {
  font-weight: 600;
  color: #fff;
}
.uvo-row .uvo-buyer {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}
.uvo-row .uvo-value {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-400);
  text-align: right;
}
.uvo-note {
  margin-top: 1.4rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-style: italic;
}

/* === Partneri === */
.partneri-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 180px;
  padding: 2rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.partner-card img {
  width: auto;
  max-width: 160px;
  height: 56px;
  object-fit: contain;
}
.partner-card h3 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.partner-card.text-only {
  background: linear-gradient(180deg, var(--green-900), var(--green-800));
  color: #fff;
  border-color: rgba(255,255,255,0.1);
}
.partner-card.text-only h3 {
  color: var(--gold);
  font-size: 1.3rem;
}

/* === Tím === */
.tim {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.92));
}
.tim-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.tim-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tim-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tim-role {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.4;
  min-height: 2.6em;
}
.tim-card h3 {
  margin: 0;
  align-self: start;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.tim-contacts {
  display: grid;
  gap: 0.45rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}
.tim-contacts a {
  display: block;
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.92rem;
  word-break: break-word;
  transition: color 0.2s ease;
}
.tim-contacts a:hover { color: var(--green-800); }
.tim-contacts a[href^="tel:"] {
  color: var(--muted);
  font-weight: 600;
}
.tim-contacts a[href^="tel:"]:hover { color: var(--ink); }

/* === Contact card extension === */
.contact-card small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* === Footer Instagram (nenápadný, v dizajne sýte) === */
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-ig:hover {
  color: #fff;
  transform: translateX(2px);
}
.footer-ig svg {
  flex: 0 0 auto;
}

/* === Footer faktúra block === */
.footer-label {
  display: inline-block;
  min-width: 4.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* === Responsive overrides === */
@media (max-width: 1100px) {
  .services-grid-4,
  .partneri-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tim-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .case-card,
  .case-card.reverse {
    grid-template-columns: 1fr;
  }
  .case-card.reverse .case-media { order: 0; }
  .uvo-row {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .uvo-row .uvo-buyer { display: none; }
  .uvo-head span:nth-child(3) { display: none; }
}

@media (max-width: 780px) {
  .services-grid-4,
  .partneri-grid,
  .tim-grid,
  .fakturacne-grid {
    grid-template-columns: 1fr;
  }
  .uvo-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
  }
  .uvo-row .uvo-subject {
    grid-column: 1 / -1;
    order: 3;
  }
  .uvo-row .uvo-buyer { display: block; grid-column: 1 / -1; order: 4; font-size: 0.85rem; }
  .uvo-head span:nth-child(3) { display: none; }
  .uvo-head span:nth-child(2) { grid-column: 1 / -1; order: 3; }
  .case-thumbs { grid-template-columns: repeat(2, 1fr); }
  .hero-photo { aspect-ratio: 1/1; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .services-grid,
  .references-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .reference-featured { grid-row: auto; }
}

@media (max-width: 780px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(251, 250, 245, 0.98);
    border: 1px solid rgba(22, 35, 23, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-cta { text-align: center; }
  .hero { padding-top: 1.5rem; }
  .hero-copy,
  .hero-side { padding: 2.5rem 0; }
  .hero h1 { max-width: none; }
  .hero-metrics,
  .services-grid,
  .references-grid,
  .process-grid,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 4.5rem 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-copy small { max-width: 26ch; }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(36, 84, 45, 0.35);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-700);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  margin: 0.9rem 0 0.2rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item strong { color: var(--ink); font-weight: 600; }


/* ============ Blog ============ */
.blog-hero { padding-top: 8rem; padding-bottom: 2rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.blog-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(36, 84, 45, 0.3);
}
.blog-card > a { display: block; color: inherit; }
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 1.6rem 1.6rem 1.8rem; }
.blog-card-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: 0.7rem;
}
.blog-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 0.7rem;
  line-height: 1.3;
  color: var(--ink);
}
.blog-card p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  line-height: 1.6;
}
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--green-800);
  font-weight: 600;
}

/* Article (post) layout */
.article-hero {
  padding-top: 8rem;
  padding-bottom: 1rem;
}
.article-hero .container { max-width: 820px; }
.article-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}
.article-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.article-body {
  padding-top: 1rem;
  padding-bottom: 4rem;
}
.article-body .container { max-width: 760px; }
.article-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  margin: 2.5rem 0 0.8rem;
  color: var(--ink);
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 1.6rem 0 0.6rem;
  color: var(--ink);
}
.article-body p, .article-body li {
  color: var(--ink);
  line-height: 1.8;
  font-size: 1.05rem;
}
.article-body ul, .article-body ol { padding-left: 1.4rem; margin: 0.8rem 0 1.4rem; }
.article-body figure { margin: 2rem 0; }
.article-body figure img { border-radius: var(--radius-md); }
.article-body figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-align: center;
}
.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { color: #fff; margin: 0 0 0.6rem; }
.article-cta p { color: rgba(255,255,255,0.85); margin: 0 0 1.2rem; }
.article-cta .btn-primary {
  background: var(--green-500);
  color: var(--green-950);
}


/* ============ Article Author + Sources ============ */
.article-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.article-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--surface-strong);
  box-shadow: 0 2px 8px rgba(15, 29, 18, 0.08);
}
.article-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.article-author-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
}
.article-author-role {
  color: var(--muted);
  font-size: 0.85rem;
}
.article-author-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.1rem;
}
.article-author-meta span + span::before {
  content: ' \00B7 ';
  margin: 0 0.2rem;
}

/* External citation links inside article body */
.article-body a[href^="http"]:not(.btn) {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.article-body a[href^="http"]:not(.btn):hover {
  color: var(--green-700);
}
.article-body a[href^="http"]:not(.btn)::after {
  content: ' ↗';
  font-size: 0.85em;
  color: var(--muted);
  margin-left: 0.1rem;
}

/* Sources block at bottom of article */
.article-sources {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
}
.article-sources h3 {
  font-size: 1rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.article-sources ol {
  padding-left: 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}
.article-sources li { margin-bottom: 0.4rem; }

/* Author byline in blog listing card */
.blog-card-byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.blog-card-byline-photo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card-byline strong {
  color: var(--ink);
  font-weight: 600;
}


/* ============ Article Table of Contents ============ */
.article-toc {
  background: var(--surface);
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem 1.4rem;
  margin: 0 0 2.2rem;
}
.article-toc-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.article-toc ol {
  margin: 0;
  padding-left: 1.3rem;
  list-style: decimal;
  color: var(--muted);
}
.article-toc li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
  font-size: 0.98rem;
}
.article-toc li:last-child { margin-bottom: 0; }
.article-toc a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.article-toc a:hover {
  color: var(--green-800);
  border-bottom-color: var(--green-500);
}

/* Smooth scroll offset for sticky header anchor links */
.article-body h2 {
  scroll-margin-top: 100px;
}

