/* trinactka.net – hlavní styly */

:root {
  --red: #D00000;
  --red-dark: #a80000;
  --red-light: #fff0f0;
  --red-mid: #ffd5d5;
  --bg: #f7f8fa;
  --bg2: #fff;
  --border: #e8eaed;
  --text: #111827;
  --text2: #6b7280;
  --text3: #9ca3af;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: #e8e8e8;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

#page-wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 60px rgba(0,0,0,0.12);
  position: relative;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(208,0,0,0.08);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1px;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }

/* Dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 10px; color: var(--text3); transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 999;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
/* Neviditelný most mezi tlačítkem a menu aby se nepřerušil hover */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--red-light); color: var(--red); }
.nav-dropdown-menu .nav-dd-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.nav-dropdown-menu .nav-dd-label { font-size: 10px; font-weight: 700; color: var(--text3); text-transform: uppercase; padding: 6px 12px 2px; letter-spacing: 0.5px; cursor: default; background: none !important; }
.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 3px 14px rgba(208,0,0,0.4);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(208,0,0,0.4); }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, #fff 0%, #fff5f5 40%, #fff8f0 70%, #fff 100%);
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(208,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(208,0,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── POPUP SPECIÁLNÍ NABÍDKA ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  animation: popupIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popupIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #666;
  transition: background 0.2s;
}
.popup-close:hover { background: #e0e0e0; }
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fde8e8;
  color: #D00000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.popup-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.popup-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.popup-input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.popup-input:focus { border-color: #D00000; }
.popup-btn {
  width: 100%;
  background: #D00000;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.popup-btn:hover { background: #b00000; transform: translateY(-1px); }
.popup-gdpr {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
}
.popup-gdpr a { color: #D00000; text-decoration: none; }
/* WhatsApp tlačítko */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: max(16px, calc(50% - 700px + 16px));
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

.popup-trigger {
  position: fixed;
  right: max(0px, calc(50% - 700px));
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  background: #D00000;
  color: #fff;
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: -4px 0 16px rgba(208,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: popupPulse 3s ease-in-out infinite;
}
.popup-trigger:hover { filter: brightness(1.1); }
.popup-trigger-text { white-space: nowrap; }
@keyframes popupPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(208,0,0,0.35); }
  50% { box-shadow: 0 8px 32px rgba(208,0,0,0.6); }
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: #ff8888; }
.hero p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 1.75rem; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 99px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(208,0,0,0.3);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(208,0,0,0.4); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 11px 22px;
  border-radius: 99px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }

.stats-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: 1rem 0.5rem;
  position: relative;
}
.stat:nth-child(1),.stat:nth-child(2) { border-bottom: 1px solid var(--border); }
.stat:nth-child(odd) { border-right: 1px solid var(--border); }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label { font-size: 11.5px; color: var(--text3); margin-top: 4px; font-weight: 500; }

/* ── SECTION ── */
.section { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
  letter-spacing: -0.2px;
}
.section-sub { font-size: 14px; color: var(--text2); margin-bottom: 1.5rem; }

/* ── TABS ── */
.tabs {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
  background: var(--bg);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
  border: 1px solid var(--border);
}
.tab {
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text2);
  border: none;
  background: transparent;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
}
.tab.active {
  background: #fff;
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.6); }

/* ── TARIF CARDS ── */
.tarify-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.tarif-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.tarif-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(208,0,0,0.15);
}
.tarif-card.popular { border-color: var(--red); box-shadow: 0 0 0 3px rgba(208,0,0,0.08); }
.popular-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 99px;
  white-space: nowrap;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
}
.tarif-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tarif-speed {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}
.tarif-speed-label { font-size: 11px; color: var(--text3); margin-top: 2px; }
.tarif-price {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-top: 1rem;
  color: var(--red);
  letter-spacing: -0.5px;
}
.tarif-price span { font-size: 12px; color: var(--text3); font-weight: 400; }
.tarif-features { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.tarif-feature { font-size: 12.5px; color: var(--text2); display: flex; align-items: center; gap: 7px; }
.tarif-feature::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.7;
}
.tarif-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: auto;
  margin-top: 0;
  padding: 5px 14px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text2);
  transition: all var(--transition);
  white-space: nowrap;
}
.tarif-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,0,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 0 0 1px rgba(208,0,0,0.12); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 26px;
  position: relative;
  z-index: 1;
}
.service-card-icon.internet { background: linear-gradient(135deg, #fde8e8 0%, #ffd5d5 100%); }
.service-card-icon.tv       { background: linear-gradient(135deg, #e8f0ff 0%, #d0e0ff 100%); }
.service-card-icon.voip     { background: linear-gradient(135deg, #e8fff0 0%, #d0ffe8 100%); }
.service-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #D00000;
  background: #fde8e8;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.service-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.2;
}
.service-desc { font-size: 13.5px; color: var(--text2); line-height: 1.65; margin-bottom: 1.25rem; }
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #D00000;
  transition: gap 0.2s ease;
}
.service-card:hover .service-card-arrow { gap: 10px; }

/* Gradient bannery – responzivní grid */
.service-banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}
.svc-banner {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 180px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.svc-banner:hover { transform: translateY(-6px); }
.svc-banner-red  { background: linear-gradient(135deg,#1a0000 0%,#8B0000 50%,#D00000 100%); }
.svc-banner-red:hover  { box-shadow: 0 20px 48px rgba(208,0,0,0.3); }
.svc-banner-blue { background: linear-gradient(135deg,#0a0a2e 0%,#1a1a6e 50%,#2563eb 100%); }
.svc-banner-blue:hover { box-shadow: 0 20px 48px rgba(37,99,235,0.3); }
.svc-banner-green{ background: linear-gradient(135deg,#002a0a 0%,#006622 50%,#16a34a 100%); }
.svc-banner-green:hover{ box-shadow: 0 20px 48px rgba(22,163,74,0.3); }
.svc-banner-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.svc-banner-circle-tr { top: -20px; right: -20px; width: 130px; height: 130px; background: rgba(255,255,255,0.07); }
.svc-banner-circle-br { bottom: -30px; right: 20px; width: 90px; height: 90px; background: rgba(255,255,255,0.05); }
.svc-banner-inner {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.svc-banner-emoji { font-size: 36px; line-height: 1; }
.svc-banner-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.svc-banner-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* ── TARIF CARD HOVER EXPAND ── */
.tarif-card { transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1); position: relative; }
.tarif-vos {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.tarif-card:hover .tarif-vos {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}
.tarif-vos-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  margin-bottom: 6px;
}
.tarif-vos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}
.tarif-vos-row:last-child { border-bottom: none; }
.tarif-vos-label { color: #888; }
.tarif-vos-val { font-weight: 700; color: #222; }
.tarif-vos-val.green { color: #16a34a; }

#vop-content h1 { font-size: 20px; font-weight: 800; color: var(--text); margin: 1.5rem 0 0.5rem; }
#vop-content h2 { font-size: 16px; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.4rem; padding-bottom: 0.3rem; border-bottom: 1px solid var(--border); }
#vop-content h3 { font-size: 14px; font-weight: 700; color: var(--text); margin: 1rem 0 0.3rem; }
#vop-content p  { font-size: 14px; color: var(--text2); line-height: 1.85; margin-bottom: 0.65rem; }
#vop-content ul, #vop-content ol { font-size: 14px; color: var(--text2); line-height: 1.85; margin: 0.5rem 0 0.75rem 1.5rem; }
#vop-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 13px; }
#vop-content td, #vop-content th { border: 1px solid var(--border); padding: 8px 12px; }
#vop-content th { background: #f7f8fa; font-weight: 700; }


#page-podminky h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; }
#page-podminky h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 1.75rem 0 0.5rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
#page-podminky p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 0.75rem; }
#page-podminky ul { font-size: 14px; color: var(--text2); line-height: 1.8; }
#page-podminky strong { color: var(--text); font-weight: 600; }
#page-podminky a { color: #D00000; text-decoration: none; }
#page-podminky a:hover { text-decoration: underline; }


.order-section {
  background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}
.order-inner { max-width: 1200px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12.5px; color: var(--text2); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-size: 14px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  transition: border-color var(--transition);
  pointer-events: auto;
  position: relative;
  z-index: 2;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,0,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.submit-btn {
  margin-top: 1rem;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 99px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: all var(--transition);
  box-shadow: 0 3px 12px rgba(208,0,0,0.3);
}
.submit-btn:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(208,0,0,0.4); }
.selected-tarif {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 1rem;
  font-size: 14px;
  color: var(--red-dark);
  display: none;
  font-weight: 600;
}
.selected-tarif.visible { display: block; }

/* ── FOOTER ── */
.footer {
  background: #f7f8fa;
  color: #333;
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid #e8eaed;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; color: #6b7280; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a { display: block; font-size: 13px; color: #555; text-decoration: none; margin-bottom: 7px; transition: color var(--transition); }
.footer-col a:hover { color: #D00000; }
.footer-divider { border: none; border-top: 1px solid #e8eaed; margin: 1.5rem 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-left { font-size: 12px; color: #888; line-height: 1.8; }
.footer-bottom-right { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-right a { font-size: 12px; color: #888; text-decoration: none; transition: color var(--transition); }
.footer-bottom-right a:hover { color: #D00000; }

/* ── PAGE SECTIONS ── */
.page-section { display: none; background: var(--bg2); padding: 3rem 2rem; animation: fadeIn 0.25s ease; }
.page-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.page-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
  color: var(--text);
}
.page-section p { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 1rem; }
.page-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.5rem; }
.contact-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.contact-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-card p { font-size: 14px; color: #555; margin-bottom: 4px; line-height: 1.6; }

/* ── LEGAL ── */
.legal-links { display: flex; flex-direction: column; gap: 10px; margin-top: 1.5rem; }
.legal-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.legal-link:hover { background: var(--red-light); border-color: var(--red); transform: translateX(4px); }
.legal-link span { color: var(--red); font-size: 20px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) and (min-width: 701px) {
  .service-banners-grid { grid-template-columns: repeat(2, 1fr); }
  .service-banners-grid > div:last-child { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-banners-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-banner { min-height: 110px; }
  .svc-banner-inner { flex-direction: row; align-items: center; justify-content: flex-start; gap: 1rem; padding: 1.25rem; }
  .svc-banner-emoji { font-size: 32px; flex-shrink: 0; }
  .svc-banner-title { font-size: 18px; }
  .svc-banner-sub { font-size: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex !important; }
}

/* Hamburger tlačítko */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  margin-left: auto;
  margin-right: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilní overlay menu */
#mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
#mobile-nav.open { display: block; }
#mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  overflow-y: auto;
  padding: 1rem 0 2rem;
}
#mobile-nav-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  transition: background 0.15s;
}
#mobile-nav-panel a:hover { background: var(--red-light); color: var(--red); }
#mobile-nav-panel .mob-section {
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 20px 4px;
}
#mobile-nav-panel .mob-highlight { color: var(--red); }
#mobile-nav-panel .mob-cta {
  margin: 1rem 20px 0;
  background: var(--red);
  color: #fff !important;
  border-radius: 99px;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slideshow-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slideshow-img.active {
  opacity: 1;
}
.hero-slideshow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
/* Tečky pro slideshow */
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(208,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
@keyframes ping-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
@media print {
  body > * { display: none !important; }
  #print-rozhrani-wrap { display: block !important; font-family: sans-serif; color: #111; }
  #print-rozhrani-wrap h1 { font-size: 18pt; margin-bottom: 4pt; }
  #print-rozhrani-wrap .pr-section { margin-bottom: 16pt; border: 1pt solid #ddd; border-radius: 6pt; padding: 10pt; page-break-inside: avoid; }
  #print-rozhrani-wrap .pr-section h2 { font-size: 12pt; margin: 0 0 6pt; color: #c00; }
  #print-rozhrani-wrap .pr-chip { display: inline-block; background: #f0f0f0; border-radius: 4pt; padding: 2pt 6pt; margin: 2pt; font-size: 9pt; }
  @page { margin: 15mm; size: A4; }
}

/* ============================================================ */

.mapycz-suggest { position:absolute; z-index:9999; background:#fff; border:1.5px solid #e0e0e0; border-radius:10px; box-shadow:0 4px 20px rgba(0,0,0,0.12); max-height:240px; overflow-y:auto; width:100%; left:0; top:100%; margin-top:2px; }
.mapycz-suggest-item { padding:9px 14px; font-size:13px; cursor:pointer; border-bottom:1px solid #f5f5f5; line-height:1.4; }
.mapycz-suggest-item:last-child { border-bottom:none; }
.mapycz-suggest-item:hover, .mapycz-suggest-item.active { background:#fde8e8; }
.mapycz-suggest-item strong { color:#D00000; font-weight:700; }
.mapycz-suggest-item span { color:#888; font-size:12px; }
.addr-wrap { position:relative; }

/* ============================================================ */

.tv-hero{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 60%,#0f3460 100%);border-radius:16px;padding:2rem;margin-bottom:2rem;display:flex;gap:2rem;align-items:center;flex-wrap:wrap;}
.tv-hero-text h2{font-size:26px;font-weight:bold;color:#fff;margin-bottom:0.5rem;}
.tv-hero-text p{font-size:14px;color:#aac4e8;line-height:1.7;margin-bottom:0;}
.tv-badge{display:inline-flex;align-items:center;gap:6px;background:#D00000;color:#fff;font-size:12px;font-weight:bold;padding:4px 12px;border-radius:99px;margin-bottom:1rem;}
.tv-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:1.25rem;}
.tv-stat{background:rgba(255,255,255,0.08);border-radius:10px;padding:0.75rem;text-align:center;}
.tv-stat-num{font-size:22px;font-weight:bold;color:#fff;}
.tv-stat-lbl{font-size:11px;color:#aac4e8;margin-top:2px;}
.tv-advantages{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:2rem;}
.tv-adv{background:#fff;border:1px solid #e0e0e0;border-radius:12px;padding:1rem;display:flex;gap:10px;align-items:flex-start;}
.tv-adv-icon{font-size:22px;flex-shrink:0;}
.tv-adv h4{font-size:13px;font-weight:bold;margin-bottom:3px;}
.tv-adv p{font-size:12px;color:#666;line-height:1.5;margin:0;}
.tv-platforms{background:#f5f5f5;border-radius:12px;padding:1.25rem;margin-bottom:2rem;}
.tv-platforms h3{font-size:15px;font-weight:bold;margin-bottom:1rem;}
.tv-platforms-grid{display:flex;flex-wrap:wrap;gap:10px;}
.tv-platform{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:6px 14px;font-size:12px;font-weight:bold;color:#444;display:flex;align-items:center;gap:6px;}
.tv-section-title{font-size:18px;font-weight:bold;margin-bottom:0.25rem;}
.tv-section-sub{font-size:13px;color:#888;margin-bottom:1.25rem;}
.tv-packages{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;margin-bottom:2rem;}
.tv-pkg{background:#fff;border:1px solid #e0e0e0;border-radius:12px;padding:1.25rem;position:relative;transition:border-color 0.2s;}
.tv-pkg:hover{border-color:#D00000;}
.tv-pkg.featured{border:2px solid #D00000;}
.tv-pkg-badge{position:absolute;top:-10px;left:50%;transform:translateX(-50%);background:#D00000;color:#fff;font-size:11px;padding:2px 10px;border-radius:99px;white-space:nowrap;font-weight:bold;}
.tv-pkg-name{font-size:15px;font-weight:bold;margin-bottom:4px;}
.tv-pkg-channels{font-size:12px;color:#888;margin-bottom:0.75rem;}
.tv-pkg-price{font-size:24px;font-weight:bold;color:#D00000;}
.tv-pkg-price span{font-size:13px;color:#888;font-weight:normal;}
.tv-pkg-features{margin-top:10px;display:flex;flex-direction:column;gap:5px;}
.tv-pkg-feat{font-size:12px;color:#555;display:flex;align-items:center;gap:5px;}
.tv-pkg-feat::before{content:"✓";color:#D00000;font-weight:bold;flex-shrink:0;}
.tv-pkg-btn{width:100%;margin-top:12px;padding:8px;background:transparent;border:1px solid #ccc;border-radius:8px;font-size:13px;cursor:pointer;}
.tv-pkg-btn:hover{background:#D00000;color:#fff;border-color:#D00000;}
.tv-addons{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:10px;margin-bottom:2rem;}
.tv-addon{background:#fff;border:1px solid #e0e0e0;border-radius:10px;padding:1rem;}
.tv-addon-name{font-size:13px;font-weight:bold;margin-bottom:3px;}
.tv-addon-channels{font-size:11px;color:#888;margin-bottom:8px;}
.tv-addon-price{font-size:18px;font-weight:bold;color:#D00000;}
.tv-addon-price span{font-size:12px;color:#888;font-weight:normal;}

/* ============================================================ */

.tv-pkg-full{background:#fff;border:1px solid #e0e0e0;border-radius:14px;margin-bottom:1rem;position:relative;transition:box-shadow 0.2s;}
.tv-pkg-full:hover{box-shadow:0 2px 12px rgba(0,0,0,0.08);}
.tv-pkg-full.featured{border:2px solid #D00000;}
.tv-pkg-header{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.4rem;cursor:pointer;user-select:none;gap:1rem;flex-wrap:wrap;}
.tv-pkg-header:hover .tv-pkg-full-name{color:#D00000;}
.tv-pkg-full-left{display:flex;align-items:center;gap:12px;}
.tv-pkg-arrow{font-size:18px;color:#ccc;transition:transform 0.25s;flex-shrink:0;}
.tv-pkg-full.open .tv-pkg-arrow{transform:rotate(90deg);color:#D00000;}
.tv-pkg-full-name{font-size:17px;font-weight:bold;margin-bottom:2px;transition:color 0.15s;}
.tv-pkg-full-sub{font-size:12px;color:#999;}
.tv-pkg-full-right{display:flex;align-items:center;gap:12px;flex-shrink:0;}
.tv-pkg-full-price{font-size:22px;font-weight:bold;color:#D00000;white-space:nowrap;}
.tv-pkg-full-price span{font-size:12px;color:#888;font-weight:normal;}
.tv-pkg-order-btn{padding:7px 18px;background:#D00000;color:#fff;border:none;border-radius:8px;font-size:13px;cursor:pointer;font-weight:bold;white-space:nowrap;}
.tv-pkg-order-btn:hover{background:#b00000;}
.tv-pkg-body{display:none;padding:0 1.4rem 1.25rem;border-top:1px solid #f0f0f0;}
.tv-pkg-full.open .tv-pkg-body{display:block;}
.tv-ch-grid{display:flex;flex-wrap:wrap;gap:6px;margin-top:0.75rem;}
.tv-ch{background:#f9f9f9;border:1px solid #eee;border-radius:8px;width:64px;height:64px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;transition:border-color 0.15s,background 0.15s;}
.tv-ch:hover{border-color:#D00000;background:#fff;}
.tv-ch img{width:44px;height:44px;object-fit:contain;}
.tv-ch-label{font-size:8px;color:#aaa;text-align:center;line-height:1.2;padding:0 3px;}
.tv-pkg-section-label{font-size:11px;font-weight:bold;color:#D00000;margin:1rem 0 0.4rem;text-transform:uppercase;letter-spacing:0.5px;}
.tv-pkg-feat-row{display:flex;flex-wrap:wrap;gap:6px;margin-top:0.5rem;}
.tv-pkg-feat-tag{background:#fff5f5;border:1px solid #fcc;border-radius:6px;font-size:11px;color:#c00;padding:3px 9px;}
.tv-ch-more{background:#f5f5f5;border:1px dashed #ccc;font-size:11px;color:#888;text-align:center;line-height:1.5;cursor:default;}
.tv-pkg-divider{font-size:11px;font-weight:bold;color:#888;margin:0.75rem 0 0.4rem;text-transform:uppercase;letter-spacing:0.5px;}

/* ============================================================ */

.tv-ch-hidden{display:none;}
.tv-show-all-btn{margin-top:8px;background:none;border:1px solid #ddd;border-radius:8px;padding:5px 14px;font-size:12px;color:#555;cursor:pointer;}
.tv-show-all-btn:hover{background:#D00000;color:#fff;border-color:#D00000;}
.tv-hide-all-btn{display:none;margin-top:8px;background:none;border:1px solid #ddd;border-radius:8px;padding:5px 14px;font-size:12px;color:#555;cursor:pointer;}
.tv-hide-all-btn:hover{background:#888;color:#fff;border-color:#888;}

/* ============================================================ */

.faq-btn { background:#f0f0f0; border:1px solid #e0e0e0; border-radius:8px; padding:7px 14px; font-size:13px; cursor:pointer; transition:all 0.15s; font-family:inherit; }
.faq-btn:hover { background:#fde8e8; border-color:#D00000; color:#D00000; }
.faq-btn-active { background:#D00000 !important; color:#fff !important; border-color:#D00000 !important; }
.faq-item { border:1px solid #e8eaed; border-radius:10px; margin-bottom:8px; overflow:hidden; transition:box-shadow 0.15s; }
.faq-item:hover { box-shadow:0 2px 8px rgba(0,0,0,0.07); }
.faq-item summary { padding:14px 18px; cursor:pointer; font-size:14px; font-weight:600; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary .faq-arrow { color:#D00000; font-size:18px; flex-shrink:0; transition:transform 0.2s; }
.faq-item[open] summary .faq-arrow { transform:rotate(45deg); }
.faq-item[open] { border-color:#D00000; }
.faq-item[open] summary { color:#D00000; }
.faq-body { padding:0 18px 14px; font-size:14px; color:#555; line-height:1.75; }
.faq-body a { color:#D00000; }

/* ============================================================ */

.onas-hero { background: linear-gradient(135deg, #fde8e8 0%, #fff5f5 100%); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; display: flex; gap: 2rem; align-items: center; }
.onas-hero-text h2 { font-size: 28px; margin-bottom: 0.5rem; }
.onas-hero-text p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 0.75rem; }
.onas-badge { display: inline-flex; align-items: center; gap: 6px; background: #D00000; color: #fff; font-size: 12px; font-weight: bold; padding: 4px 12px; border-radius: 99px; margin-bottom: 1rem; }
.onas-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 1.5rem; }
.onas-stat { background: #fff; border-radius: 10px; padding: 1rem; text-align: center; border: 1px solid #e0e0e0; }
.onas-stat-num { font-size: 24px; font-weight: bold; color: #D00000; }
.onas-stat-lbl { font-size: 12px; color: #888; margin-top: 2px; }
.onas-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 2rem; }
.onas-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 1.25rem; }
.onas-card-icon { width: 40px; height: 40px; background: #fde8e8; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 20px; }
.onas-card h4 { font-size: 14px; font-weight: bold; margin-bottom: 6px; }
.onas-card p { font-size: 13px; color: #666; line-height: 1.6; }
.accordion { border: 1px solid #e0e0e0; border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.accordion-header { background: #fff; padding: 14px 18px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: bold; user-select: none; }
.accordion-header:hover { background: #fafafa; }
.accordion-arrow { color: #D00000; font-size: 18px; transition: transform 0.25s; }
.accordion-arrow.open { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 18px 16px; font-size: 14px; color: #555; line-height: 1.7; border-top: 1px solid #f0f0f0; }
.accordion-body.open { display: block; }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 0.5rem; }
.service-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #444; padding: 8px 10px; background: #f9f9f9; border-radius: 8px; }
.service-item::before { content: "✓"; color: #D00000; font-weight: bold; flex-shrink: 0; }
.firma-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.75rem; }
.firma-chip { background: #fde8e8; color: #9a0000; font-size: 12px; font-weight: bold; padding: 5px 12px; border-radius: 99px; }
/* ── Animovaný stats-box ── */
.stat-speedometer { display:flex; justify-content:center; margin-bottom:2px; }
.stat-years-bar { display:flex; justify-content:center; }
.stat-map-wrap { display:flex; justify-content:center; }
#p13-map { opacity:0; }
