:root {
  --blue:        #0e8ab5;
  --blue-mid:    #0a6d9e;
  --blue-deep:   #074a7a;
  --cyan:        #38d4f0;
  --cyan-dim:    rgba(56,212,240,0.12);
  --cyan-border: rgba(56,212,240,0.25);
  --purple:      #6b4fa0;
  --white:       #ffffff;
  --off-white:   #e8f4f8;
  --bg:          #0b3a52;
  --bg2:         #082e42;
  --bg3:         #0d4460;
  --text:        #c8e8f5;
  --muted:       #7ab8d4;
  --shadow:      0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: 68px;
  background: rgba(7,34,52,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cyan-border);
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(56,212,240,.35);
}
.nav-logo-icon svg { width: 21px; height: 21px; color: #fff; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); letter-spacing: .03em; }
.nav-logo-text span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: .2rem; list-style: none; }
.nav-links a {
  padding: .45rem .95rem; font-size: .82rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--cyan); background: var(--cyan-dim); }
.nav-cta { background: linear-gradient(135deg, var(--cyan), var(--blue)) !important; color: #fff !important; font-weight: 600 !important; box-shadow: 0 2px 12px rgba(56,212,240,.3) !important; }
.nav-cta:hover { box-shadow: 0 4px 20px rgba(56,212,240,.5) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 3.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/Spectrum_podklad.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.55) saturate(1.2);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7,34,52,0.85) 0%, rgba(7,50,80,0.70) 40%, rgba(107,79,160,0.25) 80%, transparent 100%);
}
.hero-lens {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: min(460px, 40vw); aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(56,212,240,0.35);
  box-shadow: 0 0 0 30px rgba(56,212,240,0.04), 0 0 0 60px rgba(56,212,240,0.03), 0 0 80px rgba(56,212,240,0.15), inset 0 0 80px rgba(56,212,240,0.08);
  animation: lens-pulse 4s ease-in-out infinite;
  z-index: 1;
}
.hero-lens::before { content: ''; position: absolute; inset: 20px; border-radius: 50%; border: 1px solid rgba(56,212,240,0.2); }
.hero-lens::after  { content: ''; position: absolute; inset: 50px;  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
@keyframes lens-pulse {
  0%, 100% { box-shadow: 0 0 0 30px rgba(56,212,240,.04), 0 0 0 60px rgba(56,212,240,.03), 0 0 80px  rgba(56,212,240,.15), inset 0 0 80px  rgba(56,212,240,.08); }
  50%       { box-shadow: 0 0 0 30px rgba(56,212,240,.07), 0 0 0 60px rgba(56,212,240,.05), 0 0 120px rgba(56,212,240,.25), inset 0 0 100px rgba(56,212,240,.12); }
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(56,212,240,0.1); border: 1px solid var(--cyan-border);
  border-radius: 30px; padding: .35rem 1.1rem;
  font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.8rem;
}
.live-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.85); } }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 600; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-title em { font-style: italic; color: var(--cyan); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.75;
  color: var(--off-white); opacity: .85;
  max-width: 490px; margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(56,212,240,.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--white); line-height: 1; text-shadow: 0 0 20px rgba(56,212,240,.4); }
.stat-num span { color: var(--cyan); }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.hero-cards { position: absolute; right: 3.5rem; bottom: 4rem; z-index: 3; display: flex; gap: .8rem; }
.info-chip {
  background: rgba(7,34,52,0.75); border: 1px solid var(--cyan-border);
  border-radius: 10px; padding: .9rem 1.2rem;
  backdrop-filter: blur(12px); box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s;
}
.info-chip:hover { border-color: var(--cyan); transform: translateY(-3px); }
.info-chip-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: var(--cyan); margin-bottom: .3rem; font-weight: 600; }
.info-chip-val { font-size: .88rem; color: var(--white); line-height: 1.45; }
.info-chip-val a { color: var(--cyan); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.8rem; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 500;
  letter-spacing: .04em; text-decoration: none; cursor: pointer; border: none;
  transition: all .22s;
}
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; box-shadow: 0 4px 20px rgba(56,212,240,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(56,212,240,.5); }
.btn-outline { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* ── DIVIDER ── */
.line-divider { height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), var(--cyan), transparent); }

/* ── SECTIONS ── */
section.inner { padding: 6rem 3.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: .9rem; }
.section-sub { font-size: .98rem; color: var(--muted); line-height: 1.75; max-width: 520px; margin-bottom: 3rem; }

/* ── SERVICES ── */
.services-bg { background: var(--bg2); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--cyan-border);
  border: 1px solid var(--cyan-border); border-radius: 14px; overflow: hidden;
}
.srv { background: var(--bg2); padding: 2.2rem; transition: background .25s; cursor: default; }
.srv:hover { background: var(--bg3); }
.srv-icon {
  width: 44px; height: 44px; background: var(--cyan-dim);
  border: 1px solid var(--cyan-border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; transition: all .25s;
}
.srv:hover .srv-icon { background: rgba(56,212,240,.2); border-color: var(--cyan); box-shadow: 0 0 16px rgba(56,212,240,.2); }
.srv-icon svg { width: 20px; height: 20px; color: var(--cyan); }
.srv-name { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.srv-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── AKCE ── */
.akce-bg { background: var(--bg); }
.akce-card {
  background: linear-gradient(135deg, var(--bg3), rgba(107,79,160,.15));
  border: 1.5px solid rgba(56,212,240,.35);
  border-radius: 16px; padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 3rem;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.akce-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,212,240,.12) 0%, transparent 70%);
}
.akce-badge {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; font-size: 1.8rem; font-weight: 700;
  padding: 1.2rem 1.6rem; border-radius: 12px;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(56,212,240,.4);
}
.akce-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: .7rem; }
.akce-text { font-size: .92rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }

/* ── SORTIMENT ── */
.sortiment-bg { background: var(--bg2); }
.sort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.sort-card {
  background: var(--bg); border: 1px solid var(--cyan-border);
  border-radius: 14px; padding: 2rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.sort-card:hover { border-color: var(--cyan); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(56,212,240,.12); }
.sort-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(56,212,240,.06) 100%);
  border-color: rgba(56,212,240,.35);
}
.sort-tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cyan); font-weight: 600; margin-bottom: .8rem; }
.sort-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: .6rem; }
.sort-text { font-size: .87rem; color: var(--muted); line-height: 1.7; }
.sort-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-top: 1rem; }
.sort-list li { font-size: .85rem; color: var(--text); display: flex; align-items: flex-start; gap: .5rem; }
.sort-list li::before { content: '›'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.sort-visual { display: flex; flex-direction: column; gap: .5rem; }
.sort-chip { background: var(--cyan-dim); border: 1px solid var(--cyan-border); border-radius: 8px; padding: .55rem 1rem; font-size: .82rem; color: var(--cyan); font-weight: 500; }

/* ── O NÁS ── */
.onas-bg { background: var(--bg); }
.o-nas-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.o-nas-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.feature {
  display: flex; gap: 1rem; padding: 1.2rem 1.4rem;
  background: var(--bg2); border: 1px solid var(--cyan-border);
  border-radius: 10px; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature:hover { border-color: var(--cyan); transform: translateX(4px); box-shadow: 0 4px 20px rgba(56,212,240,.1); }
.feature-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--cyan-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.feature-title { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.feature-text { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.quote-box {
  margin-top: 2.5rem; padding: 2rem 2.5rem;
  background: var(--bg2); border: 1px solid var(--cyan-border);
  border-left: 4px solid var(--cyan); border-radius: 12px;
}
.quote-box p { font-size: 1rem; line-height: 1.75; color: var(--text); font-style: italic; }
.quote-box .tags { margin-top: 1rem; font-size: .88rem; color: var(--muted); }
.quote-box .tags strong { color: var(--cyan); }

/* ── PLATBY ── */
.payment-bar {
  margin-bottom: 2.5rem; padding: 1.8rem 2rem;
  background: var(--bg); border: 1px solid var(--cyan-border); border-radius: 14px;
}
.payment-bar-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--cyan); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.payment-bar-label svg { width: 14px; height: 14px; }
.payment-chips { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.payment-chip {
  display: flex; align-items: center; gap: .5rem;
  background: var(--bg2); border: 1px solid var(--cyan-border);
  border-radius: 8px; padding: .55rem 1rem;
  font-size: .85rem; color: var(--white);
  transition: border-color .2s;
}
.payment-chip:hover { border-color: var(--cyan); }
.payment-chip.benefit { color: var(--cyan); border-color: rgba(56,212,240,.4); font-weight: 500; }

/* ── KONTAKT ── */
.kontakt-bg { background: var(--bg2); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 1rem; }
.k-item {
  display: flex; gap: 1rem; padding: 1.2rem;
  background: var(--bg); border: 1px solid var(--cyan-border);
  border-radius: 10px; transition: border-color .25s;
}
.k-item:hover { border-color: var(--cyan); }
.k-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--cyan-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.k-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.k-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); font-weight: 600; margin-bottom: .25rem; }
.k-val { font-size: .92rem; color: var(--white); line-height: 1.55; }
.k-val a { color: var(--cyan); text-decoration: none; }
.k-val a:hover { text-decoration: underline; }
.k-closed { color: #f87171; font-size: .8rem; margin-top: .2rem; }
.kontakt-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.f-group { display: flex; flex-direction: column; gap: .35rem; }
.f-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 500; }
.f-input, .f-textarea {
  background: var(--bg); border: 1.5px solid var(--cyan-border);
  border-radius: 8px; padding: .8rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: .9rem;
  color: var(--white); outline: none; transition: border-color .2s, box-shadow .2s;
}
.f-input::placeholder, .f-textarea::placeholder { color: var(--muted); opacity: .6; }
.f-input:focus, .f-textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(56,212,240,.12); }
.f-textarea { min-height: 110px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: rgba(4,20,35,1);
  border-top: 1px solid var(--cyan-border);
  padding: 2.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); }
.footer-logo-text span { color: var(--cyan); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.4); text-decoration: none; letter-spacing: .04em; transition: color .2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.2); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  width: min(720px, calc(100% - 2rem));
  background: var(--bg2);
  border: 1px solid var(--cyan-border);
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  animation: slide-up .4s ease;
}
#cookie-banner.hidden { display: none; }
@keyframes slide-up { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.cookie-text { flex: 1; min-width: 220px; font-size: .85rem; line-height: 1.6; color: var(--muted); }
.cookie-text strong { color: var(--white); }
.cookie-text a { color: var(--cyan); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: .7rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; border: none; border-radius: 8px;
  padding: .65rem 1.4rem; font-family: 'Outfit', sans-serif;
  font-size: .85rem; font-weight: 600; cursor: pointer;
  box-shadow: 0 4px 16px rgba(56,212,240,.3);
  transition: all .2s;
}
.cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(56,212,240,.45); }
.cookie-settings {
  background: transparent; color: var(--muted);
  border: 1px solid var(--cyan-border); border-radius: 8px;
  padding: .65rem 1.2rem; font-family: 'Outfit', sans-serif;
  font-size: .85rem; cursor: pointer; transition: all .2s;
}
.cookie-settings:hover { border-color: var(--cyan); color: var(--cyan); }
.cookie-reject {
  background: transparent; color: var(--muted);
  border: none; padding: .65rem .5rem;
  font-family: 'Outfit', sans-serif; font-size: .82rem;
  cursor: pointer; text-decoration: underline; transition: color .2s;
}
.cookie-reject:hover { color: var(--white); }

/* Cookie modal */
#cookie-modal {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#cookie-modal.hidden { display: none; }
.cookie-modal-box {
  background: var(--bg2); border: 1px solid var(--cyan-border);
  border-radius: 16px; padding: 2rem; width: min(560px, 100%);
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.cookie-modal-box h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--white); margin-bottom: 1.2rem;
}
.cookie-category {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--cyan-border); gap: 1rem;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info { flex: 1; }
.cookie-cat-name { font-size: .92rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.cookie-cat-desc { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* Toggle switch */
.toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--bg);
  border: 1px solid var(--cyan-border); border-radius: 24px;
  cursor: pointer; transition: .25s;
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--muted); left: 3px; top: 3px; transition: .25s;
}
.toggle input:checked + .toggle-slider { background: var(--cyan); border-color: var(--cyan); }
.toggle input:checked + .toggle-slider::before { background: #fff; transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .5; cursor: not-allowed; }

.cookie-modal-btns { display: flex; gap: .8rem; margin-top: 1.5rem; justify-content: flex-end; flex-wrap: wrap; }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 6rem 1.5rem 10rem; min-height: auto; }
  .hero-lens { display: none; }
  .hero-cards { position: static; flex-direction: column; padding: 0 1.5rem 2rem; }
  section.inner { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .sort-grid { grid-template-columns: 1fr; }
  .sort-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .o-nas-grid-2 { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .akce-card { flex-direction: column; gap: 1.5rem; }
}
