/* ============================================================
   tulkit.html — stylesheet
   ============================================================ */
:root {
  --bg: #f7f6f3;
  --ink: #141210;
  --muted: #7a7671;
  --border: #e4e2dc;
  --teal: #1a6fb5;
  --teal-mid: #2a87d4;
  --teal-light: #deeef9;
  --teal-pale: #f0f7fd;
  --orange: #d95b22;
  --orange-light: #fdf0e8;
  --white: #ffffff;
  --serif: 'Instrument Serif', serif;
  --sans: 'Outfit', sans-serif;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(26,111,181,0.08);
  --shadow-lg: 0 12px 48px rgba(26,111,181,0.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 3px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(247,246,243,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--ink); }
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { fill: white; width: 18px; height: 18px; }
.nav-logo-text { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.btn-ghost {
  background: none; border: 1.5px solid var(--border); color: var(--ink);
  padding: 0.5rem 1.1rem; border-radius: 8px; cursor: pointer;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--teal); background: var(--teal-pale); }

.btn-primary {
  background: var(--teal); color: white; border: none;
  padding: 0.55rem 1.25rem; border-radius: 8px; cursor: pointer;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,111,181,0.35); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 5vw 4rem;
  gap: 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 70vh;
  background: radial-gradient(ellipse, var(--teal-light) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-light); color: var(--teal);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; }

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-large { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 10px; }

.hero-link {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--ink); text-decoration: none; font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}
.hero-link:hover { gap: 0.65rem; color: var(--teal); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-num { font-family: var(--serif); font-size: 2rem; color: var(--teal); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

/* HERO VISUAL */
.hero-visual { position: relative; z-index: 1; animation: fadeIn 0.9s 0.3s ease both; }

.hero-card-main {
  background: var(--white); border-radius: 20px; padding: 1.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite;
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.hero-card-title { font-weight: 500; font-size: 0.9rem; }
.hero-card-badge { background: var(--teal-light); color: var(--teal); font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.6rem; border-radius: 6px; }

.exercise-list { display: flex; flex-direction: column; gap: 0.75rem; }
.exercise-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem; background: var(--bg); border-radius: 10px;
  border: 1px solid var(--border); transition: background 0.2s;
}
.exercise-item:hover { background: var(--teal-pale); }
.exercise-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.exercise-name { font-size: 0.85rem; font-weight: 500; }
.exercise-sets { font-size: 0.75rem; color: var(--muted); }
.exercise-check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; }
.exercise-check.done { background: var(--teal); border-color: var(--teal); }
.exercise-check.done::after { content: '✓'; color: white; font-size: 0.6rem; font-weight: 600; }

.hero-card-mini {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 1rem 1.2rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.hero-card-mini-tl { top: -1.5rem; left: -2rem; animation: float 4s 1s ease-in-out infinite; }
.hero-card-mini-br { bottom: -1.5rem; right: -1.5rem; animation: float 4.5s 0.5s ease-in-out infinite; }
.mini-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.25rem; }
.mini-value { font-size: 1.3rem; font-family: var(--serif); color: var(--teal); }
.mini-progress { margin-top: 0.5rem; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; width: 120px; }
.mini-progress-bar { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); border-radius: 2px; width: 72%; }
.mini-ai { display: flex; align-items: center; gap: 0.5rem; }
.mini-ai-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 1.5s ease infinite; }
.mini-ai-text { font-size: 0.78rem; font-weight: 500; }

/* SHARED SECTION */
section { padding: 6rem 5vw; }
.section-label {
  display: inline-block; color: var(--teal); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2; letter-spacing: -0.02em; max-width: 600px; margin-bottom: 1.2rem;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; line-height: 1.75; }

/* AUDIENCE */
.audience { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 3.5rem;
  border-radius: var(--radius); overflow: visible; border: 1px solid var(--border);
}
.audience-card {
  padding: 3rem; background: var(--white);
  position: relative; overflow: hidden; cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none; display: block; color: inherit;
  border: 2px solid transparent;
}
.audience-card:hover {
  box-shadow: 0 8px 32px rgba(26,111,181,0.15);
  transform: translateY(3px);
  border-color: var(--blue-light);
  z-index: 1;
}
.audience-card.physio:hover { border-color: var(--blue); }
.audience-card.patient:hover { border-color: var(--orange); }
.audience-card.company:hover { border-color: var(--blue); }
.audience-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.audience-card.physio::before { background: var(--teal-pale); }
.audience-card.patient::before { background: var(--orange-light); }
.audience-card.company::before { background: #f0f7fd; }
.audience-card.company .audience-link { color: #1a6fb5; }
.audience-card:hover::before { opacity: 1; }
.audience-card-icon { font-size: 2.5rem; margin-bottom: 1.2rem; position: relative; z-index: 1; display:flex; align-items:center; }
.audience-card h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.audience-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; position: relative; z-index: 1; margin-bottom: 1.5rem; }
.audience-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  position: relative; z-index: 1; transition: gap 0.2s;
}
.audience-link:hover { gap: 0.65rem; }
.audience-card.physio .audience-link { color: var(--teal); }
.audience-card.patient .audience-link { color: var(--orange); }

/* FEATURES */
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-title { margin: 0.5rem auto 1rem; }
.features-header .section-sub { margin: 0 auto; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.feature-icon {
  width: 48px; height: 48px; background: var(--teal-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem;
}
.feature-card.accent .feature-icon { background: var(--orange-light); }
.feature-card h4 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.feature-card.highlight { background: var(--teal); border-color: var(--teal); color: white; }
.feature-card.highlight .feature-icon { background: rgba(255,255,255,0.15); }
.feature-card.highlight p { color: rgba(255,255,255,0.75); }

/* HOW IT WORKS */
.how-step.active 

/* PRICING */
.pricing-header { text-align: center; margin-bottom: 1.5rem; }
.pricing-header .section-title { margin: 0.5rem auto 1rem; }
.pricing-header .section-sub { margin: 0 auto; text-align: center; }












































/* TESTIMONIALS */
.testimonials { padding: 6rem 5vw; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-title { margin: 0.5rem auto 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; line-height: 1.75; color: var(--ink); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name { font-size: 0.85rem; font-weight: 500; }
.testimonial-role { font-size: 0.75rem; color: var(--muted); }

/* BLOG */
.blog { background: var(--white); border-top: 1px solid var(--border); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--bg); cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-thumb.t1 { background: linear-gradient(135deg, var(--teal-light), var(--teal-pale)); }
.blog-thumb.t2 { background: linear-gradient(135deg, var(--orange-light), #fff5f0); }
.blog-thumb.t3 { background: linear-gradient(135deg, #f0eeff, #e8e4ff); }
.blog-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal);
  font-size: 0.7rem; font-weight: 500; padding: 0.18rem 0.55rem;
  border-radius: 6px; margin-bottom: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.blog-card-title { font-family: var(--serif); font-size: 1.15rem; line-height: 1.4; margin-bottom: 0.6rem; }
.blog-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-meta { font-size: 0.75rem; color: var(--muted); }

/* CTA */
/* SEBEDIAGNOSTIKA */
.selfdiag {
  background: linear-gradient(135deg, var(--teal) 0%, #134e80 100%);
  padding: 5rem 5vw; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.selfdiag::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 50vw; height: 160%;
  background: radial-gradient(ellipse, rgba(217,91,34,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.selfdiag-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.selfdiag-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.selfdiag-label {
  display: inline-block; color: rgba(255,255,255,0.85);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.selfdiag h2 {
  font-family: var(--serif); font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: #fff; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.selfdiag p {
  color: rgba(255,255,255,0.82); font-size: 1.02rem; line-height: 1.7;
  max-width: 560px; margin: 0 auto 2.25rem;
}
.btn-selfdiag {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: var(--sans); font-size: 1.12rem; font-weight: 600;
  padding: 1.1rem 2.6rem; border-radius: 12px; text-decoration: none;
  box-shadow: 0 10px 34px rgba(217,91,34,0.45);
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
}
.btn-selfdiag:hover {
  transform: translateY(-3px); background: #e86a32;
  box-shadow: 0 16px 46px rgba(217,91,34,0.55);
}
.selfdiag-note { margin-top: 1.25rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.cta-section {
  background: var(--teal); padding: 6rem 5vw; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.7; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; position: relative; }
.btn-white-solid {
  background: white; color: var(--teal); border: none; padding: 0.85rem 2rem;
  border-radius: 10px; cursor: pointer; font-family: var(--sans); font-size: 1rem; font-weight: 500;
  text-decoration: none; transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-white-outline {
  background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem; border-radius: 10px; cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 400; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 4rem 5vw 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { margin-bottom: 0.75rem; display: block; }
.footer-brand-mark { width: 28px; height: 28px; background: var(--teal); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-brand-mark svg { fill: white; width: 14px; height: 14px; }
.footer-tagline { font-size: 0.85rem; line-height: 1.65; max-width: 240px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.6); text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--teal); color: white; border-color: var(--teal); }
.footer-col h5 { color: white; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-visual { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
      
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
}


/* ============================================================
   MOBILNÍ NAVIGACE (hamburger) — viz mobile-nav.js
   ============================================================ */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  width: 42px; height: 42px;
  padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover { border-color: var(--teal); }
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.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); }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  z-index: 199;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(20,18,16,0.10);
  padding: 0.5rem 5vw 1.5rem;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
.mobile-menu.open { display: block; animation: mobileMenuIn 0.2s ease; }
/* Respekt k systémovému omezení animací */
@media (prefers-reduced-motion: reduce) { .mobile-menu.open { animation: none; } }
.mobile-menu ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  align-items: stretch; gap: 0;   /* přebíjí .nav-links (center + 2rem) u klonu */
}
.mobile-menu li + li { border-top: 1px solid var(--border); }
.mobile-menu li { width: 100%; }
.mobile-menu ul a {
  display: block; width: 100%; padding: 0.95rem 0.25rem;
  color: var(--ink); text-decoration: none; text-align: left;
  font-family: var(--sans); font-size: 1rem; font-weight: 400;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu-cta {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border);
}
.mobile-menu-cta a {
  text-align: center; padding: 0.85rem 1rem;
  border-radius: 9px; font-size: 0.95rem; font-weight: 500;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
/* Na úzkých displejích schová sekundární tlačítko — zůstává v menu */
@media (max-width: 600px) {
  nav .btn-ghost { display: none !important; }
  nav .nav-cta { gap: 0.5rem; }
  nav .btn-primary { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}
