@charset "UTF-8";
:root {
  --blue: #2e6fbe;
  --blue-dark: #1a4d8f;
  --blue-light: #5a94d8;
  --blue-pale: #e8f1fb;
  --blue-ghost: #f3f8ff;
  --accent: #2e6fbe;
  --dark: #1c2b3a;
  --dark2: #243447;
  --text: #2d3d50;
  --text-mid: #5a6e83;
  --text-light: #61748c;
  --border: #dce8f5;
  --white: #ffffff;
  --bg: #f5f9ff;
  --shadow-sm: 0 2px 12px rgba(46,111,190,0.08);
  --shadow-md: 0 6px 30px rgba(46,111,190,0.13);
  --focus-ring: 0 0 0 3px rgba(46,111,190,0.35);
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}
@media (min-width: 601px) {
  section[id] {
    scroll-margin-top: 118px;
  }
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 76px;
}
@media (min-width: 901px) {
  body {
    padding-bottom: 0;
  }
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title span {
  color: var(--blue);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-eyebrow {
  justify-content: center;
}
.section-header .section-eyebrow::before {
  display: none;
}
.section-header .section-eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 1rem;
  min-height: 36px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
@media (min-width: 601px) {
  .topbar {
    padding: 0 2rem;
    min-height: 40px;
  }
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
@media (min-width: 601px) {
  .topbar-inner {
    justify-content: flex-start;
  }
}

.topbar a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.topbar a:hover {
  color: white;
}

.topbar-contacts {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 401px) {
  .topbar-contacts {
    gap: 2rem;
  }
}
.topbar-contacts span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.topbar-contacts svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(46, 111, 190, 0.07);
  padding: 0 1rem;
}
@media (min-width: 601px) {
  nav {
    padding: 0 2rem;
  }
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
@media (min-width: 601px) {
  .nav-inner {
    height: 70px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 601px) {
  .logo-icon {
    width: 42px;
    height: 42px;
  }
  .logo-icon svg {
    width: 22px;
    height: 22px;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-main {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
}
.logo-text .logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 601px) {
  .nav-right {
    gap: 1.5rem;
  }
}

.nav-cta {
  background: var(--blue);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--blue-dark);
}
@media (min-width: 601px) {
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.55rem 1.3rem;
  }
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0;
  list-style: none;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(46, 111, 190, 0.12);
  padding: 0.5rem 0 1rem;
  z-index: 99;
}
@media (min-width: 601px) {
  .nav-links {
    top: 110px;
  }
}
.nav-links.open {
  display: flex;
}
.nav-links a {
  display: block;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.nav-links a:last-child {
  border-bottom: none;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
  display: none;
}
@media (min-width: 901px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    z-index: auto;
  }
  .nav-links a {
    padding: 0.45rem 1rem;
    font-size: 0.84rem;
    border-bottom: none;
  }
  .nav-links a.active::after {
    display: block;
  }
}

.skip {
  position: absolute;
  left: -9999px;
}

/* hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--blue-ghost);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}

.mobile-cta-bar {
  display: flex;
  gap: 0.6rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 0.6rem 0.8rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(46, 111, 190, 0.15);
  border-top: 1px solid var(--border);
}
@media (min-width: 901px) {
  .mobile-cta-bar {
    display: none;
  }
}

.mcb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mcb-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcb-call {
  background: var(--blue-pale);
  color: var(--blue);
}
.mcb-call:hover {
  background: var(--blue-ghost);
}

.mcb-book {
  background: var(--blue);
  color: white;
}
.mcb-book:hover {
  background: var(--blue-dark);
}

#uvod {
  background: url("../img/hero.jpg") center center/cover no-repeat;
  padding: 0 2rem;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}
#uvod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 248, 255, 0.92) 0%, rgba(245, 249, 255, 0.92) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
@media (min-width: 801px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.hero-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.hero-fact svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.8rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.22s;
}

.btn-hero-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 6px 20px rgba(46, 111, 190, 0.35);
}
.btn-hero-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(46, 111, 190, 0.4);
}
.btn-hero-primary .btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-hero-primary .btn-icon svg {
  width: 14px;
  height: 14px;
  fill: white;
  stroke: none;
}

.btn-hero-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
}
.btn-hero-outline:hover {
  background: var(--blue-pale);
}

.hero-image-wrap {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
}
@media (min-width: 801px) {
  .hero-image-wrap {
    display: flex;
  }
}

.hero-photo-frame {
  position: relative;
  width: 375px;
  height: 375px;
}

.hero-photo-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 15px), calc(-50% + 15px));
  z-index: 0;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.hero-photo-clip {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#o-nas {
  padding: 5rem 2rem;
  background: var(--white);
}
@media (min-width: 901px) {
  #o-nas {
    padding: 6rem 2rem;
  }
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 801px) {
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-photo {
  position: relative;
}

.about-photo-card {
  background: var(--blue-pale);
  border-radius: 20px;
  height: 420px;
  overflow: hidden;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blue);
  color: white;
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-tag .tag-year {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}
.about-tag .tag-label {
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

.about-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.feature {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.feature-dot {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue-pale), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature-dot svg {
  width: 11px;
  height: 11px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-mid);
}

#sluzby {
  padding: 5rem 2rem;
  background: var(--bg);
}
@media (min-width: 901px) {
  #sluzby {
    padding: 6rem 2rem;
  }
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 581px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 901px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--border);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
@media (min-width: 581px) {
  .service-card {
    text-align: left;
  }
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-pale), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
}
.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (min-width: 581px) {
  .service-icon {
    margin: 0 0 1.3rem;
  }
}

.service-card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.04em;
  justify-content: center;
  width: 100%;
}
.service-link:hover {
  color: var(--blue-dark);
}
.service-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
@media (min-width: 581px) {
  .service-link {
    justify-content: flex-start;
    width: auto;
  }
}

#ordinacni-doba {
  padding: 5rem 2rem;
  background: var(--white);
}
@media (min-width: 901px) {
  #ordinacni-doba {
    padding: 6rem 2rem;
  }
}

.hours-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 901px) {
  .hours-inner {
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
  }
}

.hours-sidebar {
  position: static;
}
@media (min-width: 901px) {
  .hours-sidebar {
    position: sticky;
    top: 110px;
  }
}
.hours-sidebar p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.today-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-pale);
  color: var(--blue-dark);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.today-hours svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-box {
  background: var(--blue-pale);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.cbox-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cbox-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cbox-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cbox-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.cbox-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.cbox-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.cbox-value a {
  color: var(--blue);
  text-decoration: none;
}
.cbox-value a:hover {
  text-decoration: underline;
}

.hours-table-wrap {
  display: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
@media (min-width: 601px) {
  .hours-table-wrap {
    display: block;
  }
}

.hours-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  background: var(--white);
}
.hours-table thead tr {
  background: var(--blue);
  color: white;
}
.hours-table th {
  padding: 1rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
}
.hours-table td {
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td {
  border-bottom: none;
}
.hours-table tr:hover td {
  background: var(--blue-ghost);
}
.hours-table .day {
  font-weight: 700;
  color: var(--dark);
}
.hours-table .closed {
  color: var(--text-light);
  font-style: italic;
}

.hours-note {
  margin-top: 1.4rem;
  padding: 1.2rem 1.5rem;
  background: var(--blue-ghost);
  border-radius: 10px;
  border-left: 3px solid var(--blue-pale);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.hours-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 601px) {
  .hours-mobile {
    display: none;
  }
}

.hm-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hm-day {
  background: var(--blue);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hm-rows {
  display: flex;
  flex-direction: column;
}

.hm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hm-row:last-child {
  border-bottom: none;
}

.hm-label {
  color: var(--text-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hm-val {
  color: var(--text);
  font-weight: 600;
}
.hm-val.closed {
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
}

#tym {
  padding: 5rem 2rem;
  background: var(--white);
}
@media (min-width: 901px) {
  #tym {
    padding: 6rem 2rem;
  }
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.team-cta:hover {
  background: var(--blue);
  color: white;
}
.team-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}
.team-spotlight .team-avatar {
  width: 120px;
  height: 120px;
}
.team-spotlight .initials {
  font-size: 2.6rem;
}
@media (min-width: 701px) {
  .team-spotlight {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
    padding: 3rem;
  }
}

.team-spotlight-text .team-name {
  font-size: 1.3rem;
}
.team-spotlight-text .team-role {
  font-size: 0.85rem;
}
.team-spotlight-text .team-bio {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
}

.team-spotlight-cta {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.team-spotlight-cta:hover {
  background: var(--blue-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 461px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 901px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.team-grid .team-card {
  padding: 1.6rem 1.2rem;
  box-shadow: none;
}
.team-grid .team-avatar {
  width: 64px;
  height: 64px;
}
.team-grid .initials {
  font-size: 1.4rem;
}
.team-grid .team-name {
  font-size: 0.92rem;
}
.team-grid .team-bio {
  font-size: 0.85rem;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
  padding: 2.2rem 1.6rem;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-ghost));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blue-pale);
  margin: 0 auto;
}
.team-avatar .initials {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--blue);
}

.team-badge-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-badge-dot svg {
  width: 9px;
  height: 9px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.team-name {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

#cta-band {
  background: linear-gradient(120deg, var(--dark2) 0%, var(--dark) 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 901px) {
  #cta-band {
    padding: 6rem 2rem;
  }
}
#cta-band::before {
  content: "";
  position: absolute;
  left: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 111, 190, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 761px) {
  .cta-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta-band-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.cta-band-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white;
  line-height: 1.2;
}

.cta-band-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
}

.cta-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  background: var(--blue);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1.8rem;
  box-shadow: 0 6px 20px rgba(46, 111, 190, 0.4);
  transition: all 0.22s;
}
.cta-band-btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.cta-band-btn .btn-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-band-btn .btn-circle svg {
  width: 13px;
  height: 13px;
  fill: white;
}

#upozorneni {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #eef5fd 0%, #f3f8ff 100%);
  border-top: none;
  border-bottom: 3px solid var(--blue-pale);
}
@media (min-width: 901px) {
  #upozorneni {
    padding: 6rem 2rem;
  }
}

.alerts-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 761px) {
  .alerts-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.alert-card {
  border-radius: 16px;
  padding: 2.2rem;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(46, 111, 190, 0.16);
}
.alert-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
}
.alert-card.amber::before {
  background: linear-gradient(180deg, #c8913a, #e0b870);
}
.alert-card .alert-badge {
  background: rgba(46, 111, 190, 0.1);
  color: var(--blue);
}
.alert-card.amber .alert-badge {
  background: rgba(200, 145, 58, 0.12);
  color: #a07030;
}
.alert-card h3 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.9rem;
}
.alert-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
  line-height: 1.75;
}
.alert-card .date-chip {
  background: rgba(46, 111, 190, 0.08);
  color: var(--blue-dark);
}
.alert-card.amber .date-chip {
  background: rgba(200, 145, 58, 0.1);
  color: #8a6020;
}
.alert-card ul {
  list-style: none;
  margin-top: 0.6rem;
}
.alert-card ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.22rem 0 0.22rem 1.1rem;
  position: relative;
}
.alert-card ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--blue-light);
}
.alert-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.alert-card a:hover {
  text-decoration: underline;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.32rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}
.alert-badge svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.alert-dates {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}

.date-chip {
  font-size: 0.85rem;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

#pojistovny {
  padding: 4rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pojist-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.insurance-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.ins-chip {
  padding: 0.5rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ins-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.6);
  padding: 0 2rem;
}
footer h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
footer ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--blue-light);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 761px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
  }
}

.footer-side {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-links-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 461px) {
  .footer-links-row {
    flex-direction: row;
    gap: 3rem;
  }
}
.footer-links-row > div {
  flex: 1;
}

.footer-contact-float {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.fcf-emergency {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.fcf-phone {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
}
.fcf-phone a {
  color: var(--blue);
  text-decoration: none;
}
.fcf-phone a:hover {
  text-decoration: underline;
}

.fcf-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.fcf-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.fcf-row svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.fcf-row a {
  color: var(--text-mid);
  text-decoration: none;
}
.fcf-row a:hover {
  color: var(--blue);
}

.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 200px;
}

.footer-brand .fb-name {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.2rem;
}
.footer-brand .fb-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 400px;
}

.footer-bottom {
  background: var(--dark);
  margin: 0 -2rem;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 601px) {
  .footer-bottom-inner {
    justify-content: space-between;
    text-align: left;
  }
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}
.footer-credit a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

/* ── HERO ANIMATIONS (on load) ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner > * {
  animation: fadeUp 0.6s ease both;
}
.hero-inner > *:nth-child(2) {
  animation-delay: 0.1s;
}
.hero-inner > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero-inner > *:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-inner > *:nth-child(5) {
  animation-delay: 0.4s;
}

/* ── SCROLL ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .anim-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .anim-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .anim-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .stagger .anim-up:nth-child(1) {
    transition-delay: 0s;
  }
  .stagger .anim-up:nth-child(2) {
    transition-delay: 0.09s;
  }
  .stagger .anim-up:nth-child(3) {
    transition-delay: 0.18s;
  }
  .stagger .anim-up:nth-child(4) {
    transition-delay: 0.27s;
  }
  .stagger .anim-up:nth-child(5) {
    transition-delay: 0.36s;
  }
  .stagger .anim-up:nth-child(6) {
    transition-delay: 0.45s;
  }
  .anim-up.is-visible,
  .anim-left.is-visible,
  .anim-right.is-visible,
  .anim-scale.is-visible {
    opacity: 1;
    transform: none;
  }
}
