/* ============================================================
   pacient.html — stylesheet
   ============================================================ */
:root {
  --bg: #f7f6f3;
  --ink: #141210;
  --muted: #7a7671;
  --border: #e4e2dc;
  --blue: #1a6fb5;
  --blue-mid: #2a87d4;
  --blue-light: #deeef9;
  --blue-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(--blue-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); } }
.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; }

/* 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.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo-text { font-family: var(--serif); font-size: 1.3rem; }
.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; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); background: var(--blue-pale); }
.btn-primary {
  background: var(--blue); 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(--blue-mid); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5vw 5rem;
  gap: 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 70vh;
  background: radial-gradient(ellipse, var(--blue-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(--blue-light); color: var(--blue);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s ease infinite; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.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(--blue); }
.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(--blue); line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
.hero-stat-note { font-size: 0.68rem; color: var(--muted); margin-top: 0.35rem; line-height: 1.4; max-width: 210px; opacity: 0.85; }

/* HERO VISUAL — exercise plan card */
.hero-visual { position: relative; z-index: 1; animation: fadeIn 0.9s 0.3s ease both; }
.exercise-card {
  background: var(--white); border-radius: 20px; padding: 1.75rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.ex-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.ex-title { font-weight: 500; font-size: 0.9rem; }
.ex-badge { background: #d1fae5; color: #065f46; font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.65rem; border-radius: 6px; }
.ex-list { display: flex; flex-direction: column; gap: 0.65rem; }
.ex-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem; background: var(--bg); border-radius: 10px;
  border: 1px solid var(--border);
}
.ex-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ex-name { font-size: 0.85rem; font-weight: 500; }
.ex-detail { font-size: 0.72rem; color: var(--muted); }
.ex-status { margin-left: auto; }
.ex-pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 500; padding: 0.18rem 0.55rem; border-radius: 100px;
}
.ex-pill.done { background: #d1fae5; color: #065f46; }
.ex-pill.next { background: var(--blue-light); color: var(--blue); }
.ex-pill.rest { background: var(--orange-light); color: var(--orange); }
.ex-progress-bar {
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.ex-progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.5rem; }
.ex-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.ex-bar-fill { height: 100%; width: 60%; background: var(--blue); border-radius: 3px; }

/* SHARED */
section { padding: 6rem 5vw; }
.section-label {
  display: inline-block; color: var(--blue); 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; }

/* HOW IT WORKS */
.how { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-header { text-align: center; margin-bottom: 4rem; }
.how-header .section-title { margin: 0.5rem auto 1rem; }
.how-header .section-sub { margin: 0 auto; text-align: center; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  position: relative; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.how-step-num {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; background: var(--blue); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600;
}
.how-step-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; }
.how-step h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.65rem; }
.how-step p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* 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(--blue-light); }
.feature-icon {
  width: 48px; height: 48px; background: var(--blue-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem;
}
.feature-card.highlight { background: var(--blue); border-color: var(--blue); 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); }
.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; }

/* PRICING */
.pricing { background: var(--white); border-top: 1px solid var(--border); }
.pricing-header { text-align: center; margin-bottom: 1rem; }
.pricing-header .section-title { margin: 0.5rem auto 1rem; }
.pricing-header .section-sub { margin: 0 auto; text-align: center; }
.pricing-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 2rem;
  position: relative; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--white); border-color: var(--blue);
  box-shadow: 0 4px 30px rgba(26,111,181,0.15);
}
.pricing-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 0.7rem; font-weight: 600; padding: 0.22rem 0.85rem; border-radius: 100px;
  white-space: nowrap; letter-spacing: 0.04em;
}
.pricing-name { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.4rem; }
.pricing-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 1.5rem; }
.pricing-amount { font-family: var(--serif); font-size: 2.6rem; color: var(--blue); line-height: 1; }
.pricing-amount-row { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.pricing-amount-old { font-family: var(--serif); font-size: 1.5rem; color: var(--muted); text-decoration: line-through; line-height: 1; }
.sale-text { color: var(--orange); font-weight: 600; }
.pricing-badge.sale { background: var(--orange); }
.pricing-period { font-size: 0.8rem; color: var(--muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--ink); }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 600; flex-shrink: 0; margin-top: 0.05rem; }
.pricing-features li.dim { color: var(--muted); }
.pricing-features li.dim::before { content: '–'; color: var(--border); }
.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 0.8rem 1rem; border-radius: 10px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-plan-primary {
  background: var(--blue); color: white;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
.btn-plan-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-plan-outline {
  background: transparent; border: 1.5px solid var(--border); color: var(--ink);
}
.btn-plan-outline:hover { border-color: var(--blue); background: var(--blue-pale); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.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); }

/* CTA */
.cta-section {
  background: var(--blue); 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; flex-wrap: wrap; }
.btn-white-solid {
  background: white; color: var(--blue); 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; 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-tagline { font-size: 0.85rem; line-height: 1.65; max-width: 240px; margin-top: 0.5rem; }
.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-copy { color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .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; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .cta-actions { flex-direction: column; }
}

/* ── ORDER MODAL ─────────────────────────────── */
@keyframes popIn { 0% { opacity:0; transform:scale(0.92); } 100% { opacity:1; transform:scale(1); } }
#order-modal { position:fixed; inset:0; z-index:9000; display:flex; align-items:center; justify-content:center; padding:1rem; }
.modal-overlay { position:absolute; inset:0; background:rgba(20,18,16,0.55); backdrop-filter:blur(4px); }
.modal-box { position:relative; z-index:1; background:var(--white); border-radius:20px; padding:2rem; width:100%; max-width:560px; max-height:92vh; overflow-y:auto; box-shadow:0 24px 80px rgba(0,0,0,0.2); animation:popIn 0.3s ease both; }
.modal-close { position:absolute; top:1rem; right:1rem; background:var(--bg); border:none; width:32px; height:32px; border-radius:50%; font-size:0.85rem; cursor:pointer; color:var(--muted); display:flex; align-items:center; justify-content:center; transition:background 0.2s, color 0.2s; }
.modal-close:hover { background:var(--border); color:var(--ink); }
.modal-plan-badge { display:flex; align-items:center; gap:0.85rem; background:var(--blue-pale); border:1.5px solid var(--blue-light); border-radius:12px; padding:0.85rem 1rem; margin-bottom:1.5rem; }
.modal-plan-badge > span { font-size:1.5rem; }
.modal-plan-label { font-size:0.7rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.08em; }
.modal-plan-name { font-family:var(--serif); font-size:1.1rem; color:var(--blue); }
.modal-plan-price { margin-left:auto; font-family:var(--serif); font-size:1.2rem; color:var(--blue); white-space:nowrap; }
.modal-plan-price span { font-family:var(--sans); font-size:0.7rem; color:var(--muted); }
.modal-title { font-family:var(--serif); font-size:1.5rem; margin-bottom:0.35rem; }
.modal-sub { font-size:0.85rem; color:var(--muted); line-height:1.6; margin-bottom:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.form-group { display:flex; flex-direction:column; gap:0.3rem; margin-bottom:0.85rem; }
.form-group label { font-size:0.8rem; font-weight:500; color:var(--ink); }
.form-group input, .form-group select, .form-group textarea { border:1.5px solid var(--border); border-radius:8px; padding:0.6rem 0.85rem; font-family:var(--sans); font-size:0.875rem; color:var(--ink); background:var(--bg); transition:border-color 0.2s, box-shadow 0.2s; outline:none; width:100%; box-sizing:border-box; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(26,111,181,0.1); background:var(--white); }
.form-group textarea { resize:vertical; }
.form-consent { display:flex; align-items:flex-start; gap:0.6rem; font-size:0.78rem; color:var(--muted); margin-bottom:1.25rem; line-height:1.55; }
.form-consent input { width:auto; flex-shrink:0; margin-top:2px; }
.form-consent a { color:var(--blue); }
.modal-submit { width:100%; padding:0.85rem; background:var(--blue); color:white; border:none; border-radius:10px; font-family:var(--sans); font-size:1rem; font-weight:500; cursor:pointer; transition:background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow:0 3px 16px rgba(26,111,181,0.25); }
.modal-submit:hover { background:var(--blue-mid); transform:translateY(-1px); }
.modal-submit:disabled { background:var(--muted); cursor:not-allowed; transform:none; box-shadow:none; }
#modal-success { text-align:center; padding:1rem 0; }
#modal-success h3 { font-family:var(--serif); font-size:1.6rem; margin-bottom:0.5rem; }
#modal-success p { color:var(--muted); line-height:1.6; }
@media (max-width:500px) { .form-row { grid-template-columns:1fr; } .modal-box { padding:1.5rem 1.25rem; } }

.btn-wizard {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #1a6fb5, #3b9fd8);
  color: #fff;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 18px rgba(26,111,181,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-wizard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,181,0.35);
}


/* ============================================================
   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(--blue); }
.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(--blue); }
.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; }
}


/* ============================================================
   VIDEO SEKCE (klikací náhled — přehrávač se načte až po kliknutí)
   ============================================================ */
.video-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.video-inner { max-width: 840px; margin: 0 auto; text-align: center; }
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  background: #000; box-shadow: 0 20px 60px rgba(26,111,181,.20);
  transition: transform .25s, box-shadow .25s;
}
.video-embed:hover { transform: translateY(-3px); box-shadow: 0 28px 72px rgba(26,111,181,.28); }
.video-embed:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.video-embed img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-embed.loaded { cursor: default; transform: none; }
.video-embed.loaded:hover { transform: none; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 78px; height: 55px; display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); transition: transform .22s, filter .22s;
}
.video-embed:hover .video-play { transform: translate(-50%,-50%) scale(1.09); }
.video-privacy {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  background: rgba(20,18,16,.72); color: #fff; font-size: .72rem;
  padding: .3rem .8rem; border-radius: 100px; white-space: nowrap; backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  .video-play { width: 58px; height: 41px; }
  .video-privacy { font-size: .66rem; bottom: .6rem; }
}
