/* ============================================================
   STYLES MZDY — světlý, přívětivý styl pro mzdy/personalistiku
   "Slunce mezi mraky" — cream + gold + sage, organické křivky
   2026-05-14
   ============================================================ */

:root {
  --m-cream:        #faf6ec;
  --m-cream-warm:   #f5efde;
  --m-cream-soft:   #fdfbf3;
  --m-gold:         #c9a730;
  --m-gold-light:   #e5c44a;
  --m-gold-soft:    #f0d671;
  --m-gold-glow:    rgba(229, 196, 74, 0.32);
  --m-sage:         #7ba87a;
  --m-sage-light:   #a8c8a4;
  --m-sage-soft:    #e8eee0;
  --m-navy:         #283669;
  --m-navy-soft:    #4a5a8a;
  --m-body:         #3a4055;
  --m-muted:        #6b7088;
  --m-line:         rgba(40, 54, 105, 0.10);
  --m-line-soft:    rgba(40, 54, 105, 0.05);
  --m-shadow-sm:    0 4px 14px -8px rgba(40, 54, 105, 0.14);
  --m-shadow-md:    0 14px 36px -16px rgba(40, 54, 105, 0.20);
  --m-shadow-lg:    0 28px 60px -24px rgba(40, 54, 105, 0.26);
  --m-shadow-gold:  0 16px 42px -22px rgba(201, 167, 48, 0.45);
}

.body-mzdy {
  background: var(--m-cream);
  color: var(--m-body);
  font-family: 'Inter', 'Calibri', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Container utility */
.body-mzdy .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.body-mzdy .row { display: flex; align-items: center; justify-content: space-between; }

/* ╔══════════ NAV ══════════╗ */
.nav-mzdy {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.86);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--m-line-soft);
  padding: 14px 0;
}
.nav-mzdy .row { gap: 24px; }
.nav-mzdy .logo img {
  height: 32px;
  display: block;
  filter: saturate(1.08);
}
.nav-mzdy .nav-links {
  display: flex; list-style: none; gap: 28px;
  margin: 0; padding: 0;
}
.nav-mzdy .nav-links a {
  color: var(--m-navy);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mzdy .nav-links a:hover { color: var(--m-gold); }
.nav-mzdy .nav-back {
  color: var(--m-muted) !important;
  font-size: 12.5px;
}
.nav-mzdy .nav-other {
  color: var(--m-gold) !important;
  font-weight: 600;
}

/* ╔══════════ HERO — Cream + Sun Disc ══════════╗ */
.hero-mzdy {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 100% 60% at 20% 30%, rgba(229, 196, 74, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 70%, rgba(123, 168, 122, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--m-cream) 0%, var(--m-cream-warm) 60%, var(--m-cream) 100%);
}

/* Contour lines pozadí — vrstevnice */
.hero-contours {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, transparent 49%, rgba(201, 167, 48, 0.08) 50%, transparent 51%),
    radial-gradient(ellipse 60% 38% at 50% 50%, transparent 49%, rgba(201, 167, 48, 0.06) 50%, transparent 51%),
    radial-gradient(ellipse 100% 65% at 50% 50%, transparent 49%, rgba(201, 167, 48, 0.05) 50%, transparent 51%);
  background-size: 100% 100%;
}

/* Stoupající zlaté částice — jako prach v paprsku slunce */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 80%, rgba(201, 167, 48, 0.5), transparent),
    radial-gradient(1px 1px at 32% 65%, rgba(201, 167, 48, 0.4), transparent),
    radial-gradient(2px 2px at 48% 88%, rgba(229, 196, 74, 0.55), transparent),
    radial-gradient(1px 1px at 62% 72%, rgba(229, 196, 74, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 78% 84%, rgba(201, 167, 48, 0.45), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(229, 196, 74, 0.40), transparent),
    radial-gradient(1px 1px at 12% 50%, rgba(229, 196, 74, 0.35), transparent),
    radial-gradient(2px 2px at 25% 35%, rgba(201, 167, 48, 0.50), transparent),
    radial-gradient(1px 1px at 42% 20%, rgba(229, 196, 74, 0.30), transparent),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(201, 167, 48, 0.40), transparent);
  background-size: 100% 100%;
  animation: particles-float 18s linear infinite;
}
.hero-particles::after {
  animation-duration: 24s;
  animation-direction: reverse;
  opacity: 0.6;
}
@keyframes particles-float {
  0%   { transform: translateY(0)    translateX(0); }
  50%  { transform: translateY(-30px) translateX(8px); }
  100% { transform: translateY(0)    translateX(0); }
}

/* Velký zlatý sluneční disk vpravo */
.hero-sun {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  pointer-events: none;
  z-index: 0;
}
.hero-sun-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 243, 196, 0.85) 0%, rgba(240, 214, 113, 0.55) 28%, rgba(201, 167, 48, 0.25) 55%, transparent 75%);
  filter: blur(0.5px);
  animation: sun-breathe 6.5s ease-in-out infinite;
}
@keyframes sun-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.04); opacity: 1; }
}
/* Orbit kruhy kolem slunce */
.hero-sun-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(201, 167, 48, 0.15);
}
.hero-sun-orbit:nth-of-type(2) {
  inset: 60px;
  border-color: rgba(201, 167, 48, 0.10);
  border-style: dotted;
}
.hero-sun-orbit:nth-of-type(3) {
  inset: 130px;
  border-color: rgba(201, 167, 48, 0.07);
}

/* Hero obsah */
.hero-mzdy .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.hero-mzdy .hero-content { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  padding: 7px 18px;
  background: rgba(229, 196, 74, 0.10);
  border: 1px solid rgba(229, 196, 74, 0.32);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-eyebrow .pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--m-gold);
  box-shadow: 0 0 8px rgba(229, 196, 74, 0.7);
  animation: pulse-gold 2.4s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title-mzdy {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--m-navy);
  margin: 0 0 26px;
}
.hero-title-mzdy em {
  font-style: italic;
  background: linear-gradient(120deg, #a07e1a 0%, var(--m-gold) 35%, var(--m-gold-soft) 50%, var(--m-gold) 65%, #a07e1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead-mzdy {
  font-size: clamp(15px, 1.3vw, 17.5px);
  line-height: 1.65;
  color: var(--m-body);
  margin: 0 0 16px;
  font-weight: 400;
  max-width: 560px;
}
.hero-lead-mzdy strong { color: var(--m-navy); font-weight: 600; }

.hero-flourish {
  width: 84px;
  height: 8px;
  margin: 28px 0 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84 8'><path d='M0 4 L20 4 M28 4 L40 4 M48 4 L84 4' stroke='%23c9a730' stroke-width='1.5' stroke-linecap='round' fill='none'/><circle cx='24' cy='4' r='2' fill='%23c9a730'/><circle cx='44' cy='4' r='1.5' fill='%23c9a730'/></svg>") center no-repeat;
}

.hero-ctas-mzdy {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-warm-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--m-gold-light) 0%, var(--m-gold) 100%);
  color: #1c160c;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: var(--m-shadow-gold);
  transition: transform 0.25s, box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.btn-warm-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -18px rgba(201, 167, 48, 0.55);
}
.btn-warm-gold svg { width: 18px; height: 18px; }
.btn-ghost-sage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(123, 168, 122, 0.08);
  color: var(--m-sage);
  border: 1.5px solid rgba(123, 168, 122, 0.35);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-ghost-sage:hover {
  background: rgba(123, 168, 122, 0.16);
  border-color: var(--m-sage);
  color: #5a8a59;
}

/* Hero stats v krásných kartách */
.hero-stats-mzdy {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 640px;
}
.hero-stat-card {
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--m-line);
  border-radius: 14px;
  box-shadow: var(--m-shadow-sm);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--m-shadow-md);
}
.hero-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  color: var(--m-navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero-stat-num em {
  font-style: normal;
  color: var(--m-gold);
}
.hero-stat-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--m-muted);
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .hero-mzdy .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-sun { right: -300px; opacity: 0.5; }
  .hero-stats-mzdy { grid-template-columns: repeat(2, 1fr); }
}

/* ╔══════════ SECTION GENERIC ══════════╗ */
.section-mzdy {
  padding: 110px 0;
  position: relative;
}
.section-mzdy-soft {
  background: linear-gradient(180deg, var(--m-cream) 0%, var(--m-cream-warm) 100%);
}
.section-mzdy-cream {
  background: var(--m-cream);
}
.section-mzdy-white {
  background: linear-gradient(180deg, var(--m-cream-soft) 0%, #fff 100%);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  padding: 6px 14px;
  background: rgba(229, 196, 74, 0.08);
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-eyebrow .pulse-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--m-gold);
  animation: pulse-gold 2.4s ease-in-out infinite;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--m-navy);
  margin: 0 0 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, #a07e1a 0%, var(--m-gold) 50%, #a07e1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--m-body);
  max-width: 680px;
  margin: 0 auto;
}

/* ╔══════════ FLOW TIMELINE (Kdo jsme) ══════════╗ */
.flow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 12px;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--m-line);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--m-shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-md);
}
.flow-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(229, 196, 74, 0.16) 0%, rgba(229, 196, 74, 0.04) 100%);
  border: 1.5px solid rgba(229, 196, 74, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-gold);
}
.flow-step-icon svg { width: 28px; height: 28px; }
.flow-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--m-navy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.flow-step-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--m-muted);
}
.flow-arrow {
  color: var(--m-gold);
  font-size: 20px;
  opacity: 0.55;
  user-select: none;
}
.flow-arrow svg { width: 28px; height: 28px; }
@media (max-width: 920px) {
  .flow-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .flow-arrow { transform: rotate(90deg); margin: -4px 0; }
}

/* ╔══════════ PRINCIPY (4 karty) ══════════╗ */
.principles-mzdy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.principle-mzdy {
  background: #fff;
  border: 1px solid var(--m-line);
  border-radius: 18px;
  padding: 30px 24px 26px;
  position: relative;
  box-shadow: var(--m-shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.principle-mzdy:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-md);
  border-color: rgba(229, 196, 74, 0.40);
}
.principle-mzdy-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(123, 168, 122, 0.18) 0%, rgba(123, 168, 122, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a8a59;
}
.principle-mzdy-icon svg { width: 24px; height: 24px; }
.principle-mzdy-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(201, 167, 48, 0.4);
}
.principle-mzdy h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--m-navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.principle-mzdy p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--m-body);
  margin: 0;
}
@media (max-width: 980px) {
  .principles-mzdy { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .principles-mzdy { grid-template-columns: 1fr; }
}

/* ╔══════════ CALLOUT (Lidé, individuální přístup) ══════════╗ */
.callout-mzdy {
  background: linear-gradient(135deg, #fff 0%, var(--m-cream-soft) 100%);
  border-left: 4px solid var(--m-gold);
  padding: 30px 36px;
  border-radius: 0 18px 18px 0;
  max-width: 920px;
  margin: 60px auto;
  box-shadow: var(--m-shadow-sm);
}
.callout-mzdy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--m-body);
  margin: 0;
}
.callout-mzdy p strong { color: var(--m-navy); font-weight: 600; }

.people-callout {
  display: flex;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin: 40px auto;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--m-sage-soft) 0%, var(--m-cream) 100%);
  border-radius: 18px;
  box-shadow: var(--m-shadow-sm);
}
.people-callout-icon {
  width: 64px; height: 64px;
  flex: 0 0 auto;
  background: rgba(123, 168, 122, 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a8a59;
}
.people-callout-icon svg { width: 32px; height: 32px; }
.people-callout-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a8a59;
  margin-bottom: 6px;
}
.people-callout p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--m-body);
  margin: 0;
}
.people-callout p strong { color: var(--m-navy); }
@media (max-width: 700px) {
  .people-callout { flex-direction: column; text-align: center; }
}

.closing-mzdy {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 0;
}
.closing-mzdy p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--m-navy);
  letter-spacing: -0.005em;
  margin: 0;
}
.closing-mzdy p strong {
  font-weight: 500;
  background: linear-gradient(120deg, #a07e1a 0%, var(--m-gold) 50%, #a07e1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ╔══════════ SLUŽBY ══════════╗ */
.service-mzdy-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px 40px;
  box-shadow: var(--m-shadow-md);
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
}
.service-mzdy-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--m-gold-light) 0%, var(--m-gold) 50%, var(--m-gold-light) 100%);
  border-radius: 24px 24px 0 0;
}
.service-mzdy-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}
.service-mzdy-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(229, 196, 74, 0.16) 0%, rgba(229, 196, 74, 0.04) 100%);
  border: 1.5px solid rgba(229, 196, 74, 0.35);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-gold);
}
.service-mzdy-icon svg { width: 30px; height: 30px; }
.service-mzdy-title-wrap { padding-top: 4px; }
.service-mzdy-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 6px;
}
.service-mzdy-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.1;
  color: var(--m-navy);
  margin: 0;
  letter-spacing: -0.015em;
}
.service-mzdy-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--m-body);
  margin: 0 0 12px;
}
.service-mzdy-lead strong { color: var(--m-navy); font-weight: 600; }
.service-mzdy-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--m-body);
  margin: 0 0 12px;
}

.service-split-mzdy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0 0;
}
.service-split-block {
  background: var(--m-cream-soft);
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid var(--m-line-soft);
}
.service-split-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--m-navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--m-line);
}
.service-split-block-title::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--m-gold);
  box-shadow: 0 0 8px rgba(229, 196, 74, 0.5);
}
.service-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-checklist li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--m-body);
}
.service-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 16px;
  background: rgba(123, 168, 122, 0.16);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 L6.5 11 L12.5 5' stroke='%235a8a59' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 760px) {
  .service-split-mzdy { grid-template-columns: 1fr; }
}

.service-stats-mzdy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--m-line);
}
.service-stat-mzdy {
  text-align: center;
}
.service-stat-mzdy strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--m-navy);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
}
.service-stat-mzdy strong em {
  font-style: normal;
  color: var(--m-gold);
}
.service-stat-mzdy span {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--m-muted);
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .service-stats-mzdy { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* Zaměstnanecký portál callout */
.portal-callout {
  margin: 60px auto 0;
  max-width: 1140px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--m-navy) 0%, #1c2750 100%);
  color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.portal-callout::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229, 196, 74, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.portal-callout-icon {
  width: 80px; height: 80px;
  background: rgba(229, 196, 74, 0.15);
  border: 1.5px solid rgba(229, 196, 74, 0.35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-gold-light);
  position: relative;
  z-index: 2;
}
.portal-callout-icon svg { width: 40px; height: 40px; }
.portal-callout-body { position: relative; z-index: 2; }
.portal-callout-eyebrow {
  font-size: 11px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold-light);
  margin-bottom: 8px;
}
.portal-callout h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.portal-callout h3 em {
  font-style: italic;
  color: var(--m-gold-soft);
}
.portal-callout p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 720px;
}
@media (max-width: 760px) {
  .portal-callout { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; }
  .portal-callout-icon { margin: 0 auto; }
}

/* ╔══════════ REFERENCE — Pull-quote wall ══════════╗ */
.refs-mzdy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.ref-mzdy {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 30px;
  box-shadow: var(--m-shadow-sm);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.ref-mzdy:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-md);
}
.ref-mzdy::before {
  content: """;
  position: absolute;
  top: 8px; left: 26px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px;
  color: var(--m-gold);
  opacity: 0.18;
  line-height: 1;
  font-style: italic;
}
.ref-mzdy-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--m-navy);
  margin: 28px 0 24px;
  letter-spacing: -0.005em;
  flex: 1;
  position: relative;
  z-index: 1;
}
.ref-mzdy-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--m-line);
}
.ref-mzdy-logo {
  flex: 0 0 auto;
  width: 90px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ref-mzdy-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ref-mzdy-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--m-navy);
  line-height: 1;
}
.ref-mzdy-logo-text .accent { color: var(--m-gold); font-weight: 700; }
.ref-mzdy-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ref-mzdy-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--m-navy);
}
.ref-mzdy-tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--m-gold);
}
@media (max-width: 820px) {
  .refs-mzdy { grid-template-columns: 1fr; }
}

.refs-footnote {
  text-align: center;
  font-size: 12.5px;
  font-style: italic;
  color: var(--m-muted);
  margin: 36px auto 0;
  max-width: 720px;
  line-height: 1.5;
}

/* ╔══════════ KONTAKT (CTA final) ══════════╗ */
.cta-final-mzdy {
  position: relative;
  padding: 120px 0 110px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(229, 196, 74, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(123, 168, 122, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--m-cream) 0%, var(--m-cream-warm) 100%);
  overflow: hidden;
  text-align: center;
}
.cta-final-mzdy::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 243, 196, 0.6) 0%, rgba(240, 214, 113, 0.30) 40%, transparent 70%);
  pointer-events: none;
  animation: sun-breathe 7s ease-in-out infinite;
}
.cta-final-mzdy .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.cta-final-mzdy h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.1;
  color: var(--m-navy);
  margin: 18px 0 24px;
  letter-spacing: -0.018em;
}
.cta-final-mzdy h2 em {
  font-style: italic;
  background: linear-gradient(120deg, #a07e1a 0%, var(--m-gold) 50%, #a07e1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-final-mzdy .contact-lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--m-body);
  margin: 0 0 14px;
}
.cta-final-mzdy .contact-lead strong { color: var(--m-navy); font-weight: 600; }
.cta-final-mzdy .contact-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--m-muted);
  margin: 0 0 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-mzdy .contact-body strong { color: var(--m-navy); font-weight: 600; }
.cta-final-mzdy .btn-warm-gold {
  margin-top: 28px;
  font-size: 16px;
  padding: 18px 32px;
}

/* ╔══════════ FOOTER ══════════╗ */
.footer-mzdy {
  background: linear-gradient(180deg, var(--m-cream-warm) 0%, #ede4cd 100%);
  color: var(--m-body);
  padding: 56px 0 28px;
  border-top: 1px solid var(--m-line);
}
.footer-mzdy .container { max-width: 1240px; }
.footer-mzdy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-mzdy-brand img {
  height: 26px;
  margin-bottom: 14px;
  filter: brightness(0.75) contrast(1.15);
}
.footer-mzdy-tag {
  font-size: 13px;
  line-height: 1.6;
  color: var(--m-muted);
  max-width: 360px;
}
.footer-mzdy-col h5 {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  margin: 0 0 14px;
}
.footer-mzdy-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-mzdy-col li {
  padding: 4px 0;
  font-size: 13px;
  color: var(--m-body);
}
.footer-mzdy-bot {
  padding-top: 24px;
  border-top: 1px solid var(--m-line);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--m-muted);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-mzdy-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* ╔══════════ Reveal animace ══════════╗ */
.body-mzdy .reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 0.8s ease-out 0.1s forwards;
}
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES DUAL — dvě velké karty Mzdy + HR (propagace v3)
   ============================================================ */
.services-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.service-dual-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 32px;
  box-shadow: var(--m-shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-dual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-lg);
}
.service-dual-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--m-gold-soft) 0%, var(--m-gold) 50%, var(--m-gold-soft) 100%);
  border-radius: 22px 22px 0 0;
}
.service-dual-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--m-line);
}
.service-dual-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(229, 196, 74, 0.18) 0%, rgba(229, 196, 74, 0.05) 100%);
  border: 1.5px solid rgba(229, 196, 74, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-gold);
  margin-top: 2px;
}
.service-dual-icon svg { width: 28px; height: 28px; }
.service-dual-tag {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 6px;
}
.service-dual-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--m-navy);
  margin: 0;
  letter-spacing: -0.01em;
}
@media (max-width: 920px) {
  .services-dual { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTÁL — sekce "Vše v jednom místě"
   ============================================================ */
.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.portal-visual {
  display: flex;
  justify-content: center;
}
.portal-screen {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #fff 0%, var(--m-cream-soft) 100%);
  border-radius: 18px;
  border: 1px solid var(--m-line);
  box-shadow:
    0 24px 56px -20px rgba(40, 54, 105, 0.22),
    0 8px 18px -10px rgba(201, 167, 48, 0.18);
  overflow: hidden;
  transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.portal-screen:hover {
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}
.portal-screen-bar {
  background: var(--m-cream-warm);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--m-line-soft);
}
.portal-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(40, 54, 105, 0.20);
}
.portal-dot:first-child { background: #e08585; }
.portal-dot:nth-child(2) { background: #e5c44a; }
.portal-dot:nth-child(3) { background: #7ba87a; }
.portal-screen-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--m-line-soft);
  font-size: 13.5px;
  color: var(--m-body);
}
.portal-screen-row:last-child { border-bottom: none; }
.portal-row-head {
  background: rgba(229, 196, 74, 0.06);
  font-weight: 600;
  color: var(--m-navy);
  justify-content: space-between;
}
.portal-pill {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: rgba(123, 168, 122, 0.18);
  color: #5a8a59;
  border-radius: 100px;
  font-weight: 700;
}
.portal-icon-mini {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 196, 74, 0.14);
  color: var(--m-gold);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Fraunces', Georgia, serif;
  flex: 0 0 auto;
}

.portal-features-head {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 18px;
}
.portal-checklist li {
  font-size: 14.5px !important;
  padding: 8px 0 8px 32px !important;
}
.portal-checklist li::before {
  width: 20px !important;
  height: 20px !important;
  top: 11px !important;
}
.portal-note {
  margin-top: 22px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--m-cream-warm) 0%, var(--m-cream) 100%);
  border-left: 3px solid var(--m-gold);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--m-body);
}
.portal-note strong { color: var(--m-navy); font-weight: 600; }
@media (max-width: 920px) {
  .portal-grid { grid-template-columns: 1fr; gap: 36px; }
  .portal-screen { transform: none; max-width: 380px; }
  .portal-screen:hover { transform: none; }
}

/* ============================================================
   PROCES — Jak to funguje? 3 kroky
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.process-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--m-shadow-sm);
  border: 1px solid var(--m-line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-md);
  border-color: rgba(229, 196, 74, 0.40);
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--m-gold) 30%, var(--m-gold) 70%, transparent 100%);
  border-radius: 20px 0 0 20px;
}
.process-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  color: var(--m-gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.process-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(229, 196, 74, 0.14) 0%, rgba(229, 196, 74, 0.04) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m-gold);
}
.process-icon svg { width: 22px; height: 22px; }
.process-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--m-navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.process-list {
  list-style: none;
  margin: 0; padding: 0;
}
.process-list li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--m-body);
}
.process-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 2px;
  background: var(--m-gold);
  border-radius: 1px;
}
@media (max-width: 920px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROČ PRÁVĚ MY — 5 důvodů
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px 26px;
  box-shadow: var(--m-shadow-sm);
  border: 1px solid var(--m-line);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--m-shadow-md);
  border-color: rgba(229, 196, 74, 0.40);
}
.why-card-highlight {
  background: linear-gradient(135deg, #fff 0%, var(--m-cream-soft) 60%, rgba(229, 196, 74, 0.10) 100%);
  border-color: rgba(229, 196, 74, 0.40);
  grid-column: span 1;
}
.why-card-highlight:hover {
  border-color: var(--m-gold);
}
.why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(123, 168, 122, 0.18) 0%, rgba(123, 168, 122, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a8a59;
}
.why-card-highlight .why-icon {
  background: linear-gradient(135deg, rgba(229, 196, 74, 0.22) 0%, rgba(229, 196, 74, 0.05) 100%);
  color: var(--m-gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--m-navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.why-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--m-body);
  margin: 0;
}
.why-card p strong {
  color: var(--m-gold);
  font-weight: 700;
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT CARD — Jana Šmidílková (z propagace v3 2026-05-05)
   ============================================================ */
.contact-card-mzdy {
  margin: 40px auto 0;
  max-width: 600px;
  background: linear-gradient(135deg, #fff 0%, var(--m-cream-soft) 100%);
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 30px 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  text-align: left;
  box-shadow: var(--m-shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-card-mzdy::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--m-gold-soft) 0%, var(--m-gold) 100%);
  border-radius: 20px 0 0 20px;
}
.contact-card-avatar {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--m-gold-light) 0%, var(--m-gold) 100%);
  box-shadow: 0 0 0 4px rgba(229, 196, 74, 0.18);
}
.contact-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
}
.contact-card-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-card-body {
  flex: 1;
  min-width: 0;
}
.contact-card-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 6px;
}
.contact-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: var(--m-navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.contact-card-role {
  font-size: 13px;
  color: var(--m-muted);
  margin-bottom: 14px;
}
.contact-card-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--m-navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-channel:hover { color: var(--m-gold); }
.contact-channel svg {
  width: 16px;
  height: 16px;
  color: var(--m-gold);
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .contact-card-mzdy {
    flex-direction: column;
    text-align: center;
    padding: 26px 22px;
  }
  .contact-card-avatar { margin: 0 auto; }
  .contact-card-channels { align-items: center; }
}

/* Footer legal links (mzdy stránka) */
.footer-mzdy-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
}
.footer-mzdy-legal a {
  color: var(--m-gold);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-mzdy-legal a:hover {
  color: #a07e1a;
  text-decoration: underline;
}
.footer-mzdy-legal .footer-sep { color: var(--m-line); }
@media (max-width: 700px) {
  .footer-mzdy-bot { flex-direction: column; gap: 10px; text-align: center; }
  .footer-mzdy-legal { justify-content: center; flex-wrap: wrap; }
}

/* ╔══════════ LANG SWITCHER — light nav override (mzdy) ══════════╗ */
.nav-mzdy .lang-switcher {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--m-line, rgba(40, 54, 105, 0.12));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  list-style: none;
  cursor: default;
  margin: 0;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav-mzdy .lang-switcher:hover {
  border-color: var(--m-gold, #c9a730);
  background: rgba(255, 255, 255, 0.8);
}
.nav-mzdy .lang-switcher > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 15px;
  line-height: 1;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0.5;
  filter: grayscale(35%);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease, background 180ms ease;
}
.nav-mzdy .lang-switcher > a:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
  background: rgba(229, 196, 74, 0.10);
}
.nav-mzdy .lang-switcher > a.active {
  opacity: 1;
  filter: grayscale(0);
  background: rgba(229, 196, 74, 0.18);
  box-shadow: 0 0 0 1px rgba(201, 167, 48, 0.45);
  cursor: default;
}
.nav-mzdy .lang-switcher > a.active:hover { transform: none; }
@media (max-width: 768px) {
  .nav-mzdy .lang-switcher { padding: 4px 6px; gap: 2px; }
  .nav-mzdy .lang-switcher > a { width: 22px; height: 22px; font-size: 13px; }
}
