/* =========================================
   CAWELO — Modern Minimalist · Single Page
   ========================================= */

:root {
  --blue-900: #001f4d;
  --blue-800: #003470;
  --blue-700: #004499;
  --blue-600: #0055c4;
  --blue-100: #e5ebf1;

  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f2f4f8;
  --gray-100: #e8eaef;
  --gray-200: #d1d5de;
  --gray-400: #9098aa;
  --gray-600: #5a6275;
  --gray-800: #2a2f3e;
  --black: #0d0f14;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1360px;
  --container-pad: clamp(1.25rem, 1rem + 1vw, 2rem);
  --section-py: clamp(4.5rem, 2.5rem + 5vw, 7rem);
  --section-gap: clamp(2.75rem, 2rem + 2.4vw, 4.5rem);
  --layout-gap: clamp(2.75rem, 1.7rem + 3.2vw, 5.25rem);
  --card-gap: clamp(0.85rem, 0.55rem + 0.9vw, 1.5rem);
  --touch-size: clamp(2.75rem, 2.35rem + 1vw, 3.35rem);
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --transition: all 0.3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.25rem;
  font-size: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-y: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  scrollbar-width: none;
  -webkit-font-smoothing: antialiased;
}
.scroll-indicator {
  display: block;
  z-index: 10000;
  mix-blend-mode: normal;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background-color: transparent;
  border-radius: 1em;
  width: 0.4em;
  height: 80vh;
  position: fixed;
  inset: 10vh 0 0 auto;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.scroll-indicator.is-visible {
  visibility: visible;
  opacity: 1;
}
.scroll-indicator-bar {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 30%;
  border-radius: inherit;
  background: var(--blue-800);
  transition: none;
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; color: var(--black); }
h1, h2, h3, h4, p, a, span, strong, li { overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section {
  padding: var(--section-py) 0;
  scroll-margin-top: 0;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-800);
  margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: var(--touch-size);
  padding: clamp(0.78rem, 0.64rem + 0.35vw, 0.9rem) clamp(1.35rem, 0.9rem + 1.35vw, 2.25rem);
  background: var(--blue-800); color: var(--white);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 3px; border: 2px solid var(--blue-800);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--blue-900); border-color: var(--blue-900); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,52,112,0.25); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: var(--touch-size);
  padding: clamp(0.78rem, 0.64rem + 0.35vw, 0.9rem) clamp(1.35rem, 0.9rem + 1.35vw, 2.25rem);
  background: transparent; color: var(--white);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: 3px; border: 2px solid rgba(255,255,255,0.45);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.btn-nav {
  padding: 0.6rem clamp(1rem, 0.55rem + 1vw, 1.5rem); background: var(--blue-800); color: var(--white) !important;
  border-radius: 3px; font-weight: 600; font-family: var(--font-heading); font-size: 0.9rem;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--blue-900); transform: translateY(-1px); }

/* ═══════ NAVBAR ═══════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}


.nav-container {
  max-width: var(--container-max); margin: 0 auto; padding: clamp(0.95rem, 0.75rem + 0.55vw, 1.25rem) var(--container-pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.25rem;
}
.logo { display: flex; align-items: center; }
.logo-img { height: clamp(34px, 2.4vw, 38px); width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 0.45rem + 1.8vw, 2.5rem); }
.nav-links a:not(.btn-nav) {
  font-size: 0.9rem; font-weight: 600;
  color: var(--black); position: relative;
  white-space: nowrap;
}
.nav-links a:not(.btn-nav)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }
.nav-links a:not(.btn-nav):hover { color: var(--blue-800); }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); border-radius: 2px; transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--blue-800);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 1; transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background-color: var(--blue-800);
  background:
    linear-gradient(90deg, rgba(0, 52, 112, 1) 0%, rgba(0, 52, 112, 1) 8%, rgba(0, 52, 112, 0.96) 14%, rgba(0, 52, 112, 0.88) 21%, rgba(0, 52, 112, 0.74) 30%, rgba(0, 52, 112, 0.56) 40%, rgba(0, 52, 112, 0.38) 52%, rgba(0, 52, 112, 0.22) 64%, rgba(0, 52, 112, 0.1) 76%, rgba(0, 52, 112, 0.02) 88%),
    linear-gradient(180deg, rgba(0, 18, 42, 0.22) 0%, rgba(0, 18, 42, 0.06) 42%, rgba(0, 18, 42, 0.18) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad);
  width: 100%; padding-top: clamp(5.25rem, 3.7rem + 3vw, 6rem);
}
.hero-mobile-photo {
  display: none;
}
.hero-eyebrow {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 18, 42, 0.35);
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(3rem, 2.05rem + 3.5vw, 5.5rem);
  font-weight: 800; color: var(--white); line-height: 1.08;
  margin-bottom: clamp(1.25rem, 0.85rem + 1vw, 1.75rem); max-width: min(680px, 58vw);
  text-shadow: 0 3px 22px rgba(0, 18, 42, 0.42);
}
.hero h1 span { color: var(--white); }
.hero-sub {
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.2rem); color: var(--white);
  max-width: min(520px, 48vw); margin-bottom: clamp(2rem, 1.35rem + 1.8vw, 3rem); line-height: 1.75;
  text-shadow: 0 2px 14px rgba(0, 18, 42, 0.36);
}
.hero-actions { display: flex; gap: clamp(0.85rem, 0.5rem + 0.9vw, 1.25rem); flex-wrap: wrap; }
.hero-actions .btn-primary,
.hero-actions .btn-ghost {
  width: clamp(10.5rem, 8.8rem + 3.7vw, 12rem);
  height: clamp(3.35rem, 2.95rem + 0.9vw, 3.75rem);
  padding: 0 clamp(1.35rem, 0.8rem + 1.4vw, 2.25rem);
  justify-content: center;
  line-height: 1;
  border-width: 0;
  border-radius: 3px;
  box-shadow: 0 12px 34px rgba(0, 18, 42, 0.22);
}
.hero-actions .btn-primary {
  background: var(--white);
  color: var(--blue-800);
  border: 0;
}
.hero-actions .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  border: 0;
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 18, 42, 0.28);
}
.hero-actions .btn-ghost {
  background: var(--blue-800);
  color: var(--white);
  border: 0;
}
.hero-actions .btn-ghost:hover {
  background: var(--blue-900);
  border: 0;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 18, 42, 0.28);
}
/* ═══════ STATS BAR ═══════ */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  padding: clamp(1.75rem, 1.25rem + 1.45vw, 2.5rem) 0;
}
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 0.5rem clamp(0.85rem, 0.2rem + 1.8vw, 2rem); }
.stat-value {
  display: block; font-family: var(--font-heading); font-size: clamp(1.25rem, 0.85rem + 1.05vw, 1.75rem); font-weight: 800;
  color: var(--blue-800); line-height: 1.1; margin-bottom: 0.35rem;
}
.stat-label {
  display: block; font-size: clamp(0.68rem, 0.58rem + 0.28vw, 0.78rem); font-weight: 500;
  color: var(--gray-400); letter-spacing: 0.06em; text-transform: uppercase;
}
.stat-divider { width: 1px; height: 48px; background: var(--gray-200); flex-shrink: 0; }

/* ═══════ SECTION HEADER ═══════ */
.section-header { max-width: 620px; margin-bottom: var(--section-gap); }
.section-header { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.25rem; }
.section-header h2 span { color: var(--blue-800); }
.section-header p { color: var(--gray-600); font-size: clamp(0.98rem, 0.9rem + 0.3vw, 1.05rem); line-height: 1.75; }
#sluzby .section-header {
  max-width: 900px;
}
#sluzby .section-header h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  letter-spacing: 0;
}
.services-title-line {
  display: block;
}
.services-title-mobile {
  display: none;
}

/* ═══════ SERVICES GRID ═══════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--card-gap);
}
.service-card {
  background: var(--white);
  min-height: clamp(9.35rem, 8.6rem + 1.4vw, 9.9rem);
  padding: clamp(1.15rem, 0.85rem + 0.8vw, 1.45rem) clamp(0.85rem, 0.6rem + 0.6vw, 1rem) clamp(1rem, 0.78rem + 0.5vw, 1.15rem);
  display: grid;
  grid-template-rows: clamp(3.9rem, 3.4rem + 1vw, 4.35rem) minmax(2.8rem, auto);
  align-content: center;
  justify-items: center;
  row-gap: 0.72rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 17, 35, 0.04);
  transition: var(--transition);
}
.services-grid .service-card.reveal { transition-delay: 0s; }
.services-grid .service-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.services-grid .service-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.services-grid .service-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.services-grid .service-card.reveal:nth-child(5) { transition-delay: 0.24s; }
.services-grid .service-card.reveal:nth-child(6) { transition-delay: 0.12s; }
.services-grid .service-card.reveal:nth-child(7) { transition-delay: 0.18s; }
.services-grid .service-card.reveal:nth-child(8) { transition-delay: 0.24s; }
.services-grid .service-card.reveal:nth-child(9) { transition-delay: 0.3s; }
.services-grid .service-card.reveal:nth-child(10) { transition-delay: 0.36s; }
.service-card:hover {
  border-color: rgba(0, 52, 112, 0.32);
  box-shadow: 0 18px 40px rgba(7, 17, 35, 0.08);
  transform: translateY(-2px);
}
.service-number {
  font-family: var(--font-heading); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--blue-800); margin-bottom: 1.1rem;
  display: none;
}
.service-icon {
  width: clamp(3.75rem, 3.25rem + 1vw, 4.2rem);
  height: clamp(3.75rem, 3.25rem + 1vw, 4.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--blue-800);
}
.service-icon svg {
  width: 3.35rem;
  height: 3.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon img {
  width: clamp(3rem, 2.55rem + 0.85vw, 3.35rem);
  height: clamp(3rem, 2.55rem + 0.85vw, 3.35rem);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(43%) saturate(2846%) hue-rotate(190deg) brightness(94%) contrast(104%);
}
.service-icon img[src$="wrench.png"],
.service-icon img[src$="car-engine.png"],
.service-icon img[src$="windshield.png"] {
  width: 3.75rem;
  height: 3.75rem;
}
.service-icon img[src$="snowflake.png"],
.service-icon img[src$="vehicle-inspection.png"],
.service-icon img[src$="car-insurance.png"] {
  width: 3.6rem;
  height: 3.6rem;
}
.service-icon img[src$="car.png"],
.service-icon img[src$="electric-car.png"] {
  width: 3.7rem;
  height: 3.7rem;
}
.service-card h3 {
  min-height: 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--blue-900);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 0;
}
.service-card p {
  color: var(--gray-600);
  font-size: 0.86rem;
  line-height: 1.62;
  max-width: 18rem;
  padding-right: 0.75rem;
  display: none;
}
.service-arrow {
  position: absolute;
  right: 1.05rem;
  bottom: 1rem;
  color: var(--blue-800);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: none;
}

/* ═══════ GALLERY STRIP ═══════ */
/* ═══════ INFO / POJIŠŤOVNY ═══════ */
.info-section { background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.info-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--layout-gap); align-items: center;
}
.info-layout--documents {
  margin-top: clamp(4rem, 7vw, 6.5rem);
  padding-top: clamp(3rem, 5vw, 4.75rem);
  border-top: 1px solid var(--gray-100);
}
.info-img-wrap {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 1.26;
  box-shadow: 0 18px 48px rgba(7, 17, 35, 0.08);
}
.info-img-wrap::before {
  content: none;
}
.info-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.info-text-col .eyebrow {
  color: #003470;
  letter-spacing: 0.24em;
  margin-bottom: 1.6rem;
}
.info-text-col h2 { font-size: clamp(2.45rem, 4vw, 3.75rem); font-weight: 800; margin-bottom: 1.8rem; line-height: 1.1; color: #071123; }
.info-text-col h2 span { color: var(--blue-800); }
.info-text-col > p { color: #647188; font-size: clamp(1.05rem, 1.4vw, 1.24rem); line-height: 1.78; margin-bottom: 2.4rem; max-width: 620px; }
.info-text-col strong { color: var(--gray-800); font-weight: 600; }

.feature-list { margin-bottom: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list li { display: flex; align-items: center; gap: 1rem; font-size: clamp(1rem, 1.25vw, 1.16rem); color: #647188; }
.feature-list--insurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
  position: relative;
}
.feature-list--insurance::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gray-100);
  transform: translateX(-50%);
}
.feature-list--insurance li {
  align-items: flex-start;
  font-size: clamp(0.95rem, 1.08vw, 1.04rem);
  line-height: 1.55;
  padding: 1.25rem 0;
}
.feature-list--insurance li:nth-child(1),
.feature-list--insurance li:nth-child(2),
.feature-list--insurance li:nth-child(3),
.feature-list--insurance li:nth-child(6) {
  border-bottom: 1px solid var(--gray-100);
}
.feature-list--insurance li:nth-child(1) { order: 1; }
.feature-list--insurance li:nth-child(2) { order: 2; }
.feature-list--insurance li:nth-child(3) { order: 3; }
.feature-list--insurance li:nth-child(4) { order: 6; }
.feature-list--insurance li:nth-child(5) { order: 5; }
.feature-list--insurance li:nth-child(6) { order: 4; }
.feature-list--insurance .check-icon { margin-top: 0.1rem; }
.document-card-col h2 {
  max-width: 34rem;
  font-size: clamp(2.45rem, 4vw, 3.75rem);
}
.document-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-gap);
}
.document-card {
  min-height: clamp(7.7rem, 5.9rem + 3vw, 9.75rem);
  padding: clamp(0.82rem, 0.45rem + 0.75vw, 1.15rem) clamp(0.75rem, 0.5rem + 0.55vw, 1rem) clamp(0.8rem, 0.5rem + 0.65vw, 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 17, 35, 0.04);
}
.document-card-icon {
  width: clamp(3.15rem, 2.35rem + 1.4vw, 4rem);
  height: clamp(3.15rem, 2.35rem + 1.4vw, 4rem);
  margin-bottom: clamp(0.55rem, 0.32rem + 0.6vw, 0.85rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 52, 112, 0.05);
  color: var(--blue-800);
  border-radius: 50%;
}
.document-card-icon svg {
  width: clamp(1.75rem, 1.25rem + 0.9vw, 2.25rem);
  height: clamp(1.75rem, 1.25rem + 0.9vw, 2.25rem);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.document-card-icon img {
  width: clamp(1.85rem, 1.3rem + 0.95vw, 2.35rem);
  height: clamp(1.85rem, 1.3rem + 0.95vw, 2.35rem);
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(43%) saturate(2846%) hue-rotate(190deg) brightness(94%) contrast(104%);
}
.document-card-icon text {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-heading);
}
.document-card h3 {
  max-width: 14rem;
  color: var(--blue-900);
  font-size: clamp(0.9rem, 0.72rem + 0.5vw, 1.12rem);
  font-weight: 800;
  line-height: 1.35;
}
.check-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  color: var(--blue-800);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.insurer-logos {
  --insurer-logo-gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  margin-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  padding: 1.15rem 0;
  position: relative;
}
.insurer-logos::before,
.insurer-logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 7rem);
  z-index: 2;
  pointer-events: none;
}
.insurer-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255,255,255,0));
}
.insurer-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255,255,255,0));
}
.insurer-logos-scroll {
  width: 100%;
  display: flex;
  will-change: transform;
}
.insurer-logos-collection {
  display: flex;
  align-items: center;
  gap: var(--insurer-logo-gap);
  flex: none;
  padding-right: var(--insurer-logo-gap);
}
.insurer-logo-item {
  flex: 0 0 auto;
  width: clamp(8rem, 13vw, 11.5rem);
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
}
.insurer-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.insurer-logo-item img.insurer-logo-kooperativa {
  transform: scale(2.15);
}
.insurer-logo-item img.insurer-logo-allianz {
  transform: scale(1.1);
}

/* ═══════ ZAJÍMAVOSTI / FACTS ═══════ */
.unusual-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 52, 112, 0.08), transparent 34rem),
    var(--off-white);
  border-top: 1px solid var(--gray-100);
}
.unusual-header {
  max-width: 900px;
  margin: 0 auto var(--section-gap);
  text-align: center;
}
.unusual-header h2 {
  max-width: 860px;
  margin: 0 auto;
  color: #071123;
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: 0;
}
.unusual-title-desktop span {
  color: var(--blue-800);
}
.unusual-title-mobile {
  display: none;
}
.unusual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.unusual-card {
  min-height: clamp(36rem, 52vw, 48rem);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(7, 17, 35, 0.12);
}
.unusual-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 3.6vw, 3.5rem) clamp(1.75rem, 3.4vw, 3.35rem) 1.5rem;
}
.unusual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding: 0.72rem 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(7, 17, 35, 0.06);
}
.unusual-badge--accent { color: #e3362d; }
.unusual-badge img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  flex-shrink: 0;
}
.unusual-card h3 {
  max-width: 610px;
  margin-bottom: 1.35rem;
  color: #071123;
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
}
.unusual-card p {
  max-width: 590px;
  color: #42536a;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}
.unusual-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.unusual-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.7s var(--ease);
}
.unusual-card:first-child .unusual-card-image img {
  object-position: right bottom;
}
.unusual-card:hover .unusual-card-image img {
  transform: scale(1.025);
}

/* ═══════ CONTACT ═══════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--layout-gap); align-items: start;
}
.contact-text h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; margin-bottom: 1.25rem; }
.contact-text h2 span { color: var(--blue-800); }
.contact-text > p { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.75; }

.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--off-white); border: 1px solid var(--gray-100); border-radius: 6px;
  transition: var(--transition);
}
a.contact-item:hover {
  background: var(--blue-800); border-color: var(--blue-800);
  transform: translateX(4px);
}
a.contact-item:hover .contact-icon { background: rgba(255,255,255,0.2); color: var(--white); }
a.contact-item:hover .contact-detail strong,
a.contact-item:hover .contact-detail span { color: var(--white); }
.contact-icon {
  width: 44px; height: 44px; background: var(--blue-100); color: var(--blue-800);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.contact-detail { display: flex; flex-direction: column; }
.contact-detail strong {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; color: var(--gray-400);
  letter-spacing: 0; margin-bottom: 0.15rem; transition: var(--transition);
}
.contact-detail span { font-size: 1.05rem; font-weight: 500; color: var(--gray-800); transition: var(--transition); }

.contact-map-col { position: sticky; top: 6rem; }
.map-embed {
  border-radius: 8px; overflow: hidden; height: 440px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1); border: 1px solid var(--gray-100);
}

/* ═══════ FOOTER ═══════ */
.footer { background: var(--blue-800); color: var(--white); padding-top: clamp(2.35rem, 1.5rem + 2.2vw, 3.25rem); }
.footer-inner {
  display: grid; grid-template-columns: max-content max-content max-content; gap: clamp(2rem, 4vw, 5rem);
  justify-content: space-between;
  padding-bottom: clamp(2.35rem, 1.5rem + 2.2vw, 3.25rem);
  align-items: start;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  letter-spacing: 1.5px; margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; }
.footer-links-col,
.footer-info-col {
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
}
.footer-links-col strong,
.footer-info-col strong {
  font-family: var(--font-heading); font-size: 1rem; line-height: 1.2; letter-spacing: 0;
  color: var(--white); margin-bottom: 0.35rem;
}
.footer-links-col a,
.footer-info-col a {
  font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.84); transition: color 0.2s ease;
}
.footer-links-col a:hover,
.footer-info-col a:hover { color: var(--white); }
.footer-info-col p {
  margin: 0; font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.84);
}
.footer-accordion-header { display: none; }
.footer-accordion-content { display: contents; }
.footer-logo-img {
  height: 36px; width: auto; display: block;
  background: var(--white);
  border-radius: 4px;
  filter: none;
  margin-bottom: 1rem;
  opacity: 1;
  padding: 0.35rem 0.55rem;
}

/* ═══════ ANIMATIONS ═══════ */
.fade-in-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ═══════ REVIEWS ═══════ */
.reviews-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
}

.reviews-header {
  margin-bottom: var(--section-gap);
}

.reviews-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--card-gap);
  margin-bottom: clamp(1.15rem, 0.8rem + 0.9vw, 1.5rem);
  flex-wrap: wrap;
}

.reviews-title-row h2 {
  color: #071123;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  margin-top: 0;
}
.reviews-title-row h2 span { color: var(--blue-800); }

.reviews-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-800);
  font-family: var(--font-heading);
  border: 1.5px solid var(--blue-100);
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  white-space: nowrap;
  transition: var(--transition);
  background: var(--white);
}
.reviews-source-link:hover {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.reviews-overall {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 2rem + 1.8vw, 3.5rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
}

.stars-row {
  display: flex;
  gap: 3px;
  margin-left: auto;
  flex-shrink: 0;
}

.star {
  width: 18px;
  height: 18px;
  fill: var(--blue-800);
  stroke: none;
}

.reviews-count {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.reviews-dots {
  display: none;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: clamp(1.25rem, 0.95rem + 0.9vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(0,52,112,0.1);
  transform: translateY(-3px);
  border-color: var(--blue-100);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.reviewer-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}
.review-card > p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .unusual-card { min-height: clamp(37rem, 52vw, 40rem); }
  .document-card h3 {
    font-size: clamp(0.92rem, 1.65vw, 1.04rem);
  }
  .reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - var(--card-gap)) / 2);
    grid-template-columns: none;
    gap: var(--card-gap);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
  }
  .reviews-grid.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }
  .reviews-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gray-200);
    cursor: pointer;
    transition: width 0.25s var(--ease), background 0.25s var(--ease);
  }
  .reviews-dot.is-active {
    width: 1.45rem;
    background: var(--blue-800);
  }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-layout { grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 3rem); }
  .info-layout .info-text-col { order: 1; }
  .info-layout .info-img-col { order: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 3rem); }
  .contact-map-col { position: static; }
  .map-embed { height: clamp(18rem, 42vw, 20rem); }
  .unusual-grid { grid-template-columns: 1fr; }
  .unusual-card { min-height: clamp(34rem, 64vw, 38rem); }
  .document-card {
    min-height: clamp(5.25rem, 9vw, 6.25rem);
    flex-direction: row;
    justify-content: flex-start;
    gap: clamp(0.85rem, 2vw, 1.2rem);
    padding: clamp(0.85rem, 2vw, 1.05rem) clamp(1rem, 2.5vw, 1.35rem);
    text-align: left;
  }
  .document-card-icon {
    width: clamp(3.35rem, 6vw, 4rem);
    height: clamp(3.35rem, 6vw, 4rem);
    margin-bottom: 0;
  }
  .document-card h3 {
    text-align: left;
  }
  .section-header h2:not(.services-title),
  .info-text-col h2,
  .document-card-col h2,
  .unusual-header h2,
  .reviews-title-row h2,
  .team-header h2,
  .contact-section .contact-text h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: balance;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .service-card {
    min-height: clamp(5.8rem, 10vw, 6.75rem);
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
    align-content: center;
    justify-items: start;
    column-gap: clamp(0.85rem, 2vw, 1.2rem);
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1rem, 2.4vw, 1.35rem);
    text-align: left;
  }
  .service-icon {
    width: clamp(3.4rem, 6vw, 4rem);
    height: clamp(3.4rem, 6vw, 4rem);
  }
  .service-card h3 {
    max-width: none;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .nav-container {
    gap: 0.9rem;
  }
  .nav-links {
    gap: clamp(0.6rem, 1.3vw, 0.95rem);
  }
  .nav-links a:not(.btn-nav) {
    font-size: 0.82rem;
  }
  .btn-nav {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
  .hero {
    min-height: 82svh;
  }
  .hero-media img {
    object-position: 58% center;
  }
  .hero-content {
    padding-top: clamp(5.4rem, 9vw, 6.25rem);
  }
  .hero h1 {
    max-width: 34rem;
  }
  .hero-sub {
    max-width: 29rem;
  }
}

@media (min-width: 1921px) {
  .hero {
    background: var(--blue-800);
    min-height: auto;
    height: min(100svh, 1080px);
  }
  .hero-media {
    inset: 0 auto 0 50%;
    width: min(100%, 1920px);
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 3.75rem;
  }
  .section {
    scroll-margin-top: 0;
  }

  .reveal {
    transform: translateY(14px);
    transition-duration: 0.38s;
  }
  .reveal.delay-1,
  .reveal.delay-2,
  .reveal.delay-3 {
    transition-delay: 0s;
  }

  :root {
    --container-pad: clamp(1rem, 4.8vw, 1.35rem);
    --section-py: clamp(4rem, 10vw, 4.5rem);
    --section-gap: clamp(2.35rem, 7vw, 2.75rem);
    --card-gap: clamp(0.85rem, 2.2vw, 1rem);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.15rem var(--container-pad) 1.4rem;
    background: var(--blue-800);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nav-links a:not(.btn-nav),
  .nav-links .btn-nav {
    width: 100%;
    padding: 0.9rem 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .nav-links a:not(.btn-nav)::after,
  .nav-links .btn-nav::after {
    content: '\203A';
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: currentColor;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.9;
  }
  .nav-links a:hover,
  .nav-links .btn-nav:hover {
    background: transparent;
    color: var(--white) !important;
    transform: none;
  }
  .nav-links a:not(.btn-nav):hover::after,
  .nav-links .btn-nav:hover::after {
    width: auto;
    color: var(--white);
  }
  .mobile-menu-btn { display: flex; z-index: 1001; }

  .hero {
    min-height: auto;
    align-items: flex-start;
    background: var(--white);
  }
  .hero-media,
  .hero-overlay {
    display: none;
  }
  .hero-content {
    padding: clamp(5.45rem, 16vw, 5.9rem) var(--container-pad) clamp(1.5rem, 5vw, 2rem);
  }
  .hero-mobile-photo {
    display: block;
    width: 100%;
    aspect-ratio: 1.16 / 1;
    margin-top: 1.45rem;
    overflow: hidden;
    border-radius: 14px;
    background: var(--gray-100);
    box-shadow: 0 14px 34px rgba(7, 17, 35, 0.16);
  }
  .hero-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-eyebrow {
    margin-bottom: 0.95rem;
    color: var(--blue-800);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
    text-shadow: none;
  }
  .hero h1 {
    max-width: min(29rem, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    color: #071123;
    font-size: clamp(2.28rem, 10.4vw, 3rem);
    line-height: 0.98;
    text-align: center;
    text-shadow: none;
  }
  .hero h1::after {
    content: none;
  }
  .hero h1 span {
    color: inherit;
    display: inline-block;
  }
  .hero h1 span::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 1rem;
    background: var(--blue-800);
  }
  .hero-sub {
    max-width: min(22.5rem, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.15rem;
    color: #4d5d73;
    font-size: clamp(0.94rem, 2.8vw, 0.98rem);
    line-height: 1.65;
    text-align: center;
    text-shadow: none;
  }
  .hero-actions {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    gap: 0.75rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    height: 3.35rem;
    padding: 0 0.75rem;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 9px 22px rgba(0, 52, 112, 0.16);
    text-align: center;
    white-space: nowrap;
  }
  .hero-actions .btn-primary::after,
  .hero-actions .btn-ghost::after {
    content: none;
  }
  .hero-actions .btn-primary {
    background: var(--blue-800);
    color: var(--white);
  }
  .hero-actions .btn-primary:hover {
    background: var(--blue-800);
    color: var(--white);
  }
  .hero-actions .btn-ghost {
    background: var(--white);
    color: var(--blue-800);
    border: 1px solid #d8e0ec;
    box-shadow: 0 6px 16px rgba(7, 17, 35, 0.06);
  }
  .hero-actions .btn-ghost:hover {
    background: var(--white);
    color: var(--blue-800);
    border: 1px solid #d8e0ec;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--card-gap);
  }
  .stat-item {
    min-height: clamp(6.2rem, 18vw, 7.25rem);
    padding: clamp(0.9rem, 3vw, 1.15rem) clamp(0.6rem, 2.4vw, 0.9rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(7, 17, 35, 0.04);
  }
  .stat-value {
    font-size: clamp(1.18rem, 4.8vw, 1.55rem);
    white-space: normal;
    text-wrap: balance;
  }
  .stat-label {
    font-size: clamp(0.64rem, 2.2vw, 0.72rem);
    white-space: normal;
    text-wrap: balance;
  }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid .service-card.reveal {
    transition-delay: 0s;
  }
  .service-card {
    grid-template-rows: 3.65rem auto;
    border: 1px solid var(--gray-100);
    min-height: clamp(9.6rem, 31vw, 11.5rem);
    padding-top: clamp(1rem, 4vw, 1.35rem);
    padding-bottom: clamp(0.95rem, 3.5vw, 1.2rem);
    row-gap: 0.45rem;
  }
  .service-card h3 {
    min-height: auto;
    max-width: 18rem;
  }
  .feature-list--insurance { grid-template-columns: 1fr; }
  .document-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list--insurance {
    gap: 0;
  }
  .feature-list--insurance::before {
    content: none;
  }
  .feature-list--insurance li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    column-gap: 1rem;
    order: initial;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .feature-list--insurance li:last-child {
    border-bottom: 1px solid var(--gray-100);
  }
  .feature-list--insurance .check-icon {
    margin-top: 0;
  }
  .feature-list--insurance li span {
    min-width: 0;
    line-height: 1.55;
  }

  .unusual-header { margin-bottom: var(--section-gap); }
  .unusual-card { min-height: clamp(33.35rem, 89.7vw, 35.65rem); border-radius: 14px; }
  .unusual-card-content { padding: clamp(1.35rem, 4vw, 1.5rem) var(--container-pad) 1rem; }
  .unusual-card-image {
    display: flex;
    align-items: flex-end;
  }
  .unusual-card-image img,
  .unusual-card:first-child .unusual-card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
  }
  .unusual-card:hover .unusual-card-image img {
    transform: none;
  }

  .reviews-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .reviews-grid .review-card:nth-child(3) {
    order: -1;
  }
  .reviews-header {
    margin-bottom: 0;
  }
  .reviews-title-row {
    align-items: center;
    gap: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .reviews-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }
  .reviews-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gray-200);
    cursor: pointer;
    transition: width 0.25s var(--ease), background 0.25s var(--ease);
  }
  .reviews-dot.is-active {
    width: 1.45rem;
    background: var(--blue-800);
  }
  .reviews-title-row { flex-direction: column; }

  .section-header h2:not(.services-title),
  .info-text-col h2,
  .unusual-header h2,
  .reviews-title-row h2,
  .team-header h2,
  .contact-section .contact-text h2,
  .service-card h3,
  .document-card h3 {
    text-wrap: balance;
  }

  .services-title {
    text-wrap: normal;
  }
  .services-title-desktop {
    display: none;
  }
  .services-title-mobile {
    display: inline;
  }
  #sluzby .section-header p {
    max-width: min(38rem, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: balance;
  }

  .info-text-col h2,
  .document-card-col h2 {
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.15rem, 9.4vw, 3rem);
    line-height: 1.08;
  }

  .footer { padding-top: 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 1.25rem;
  }
  .footer-links-col { display: none; }
  .footer-info-col {
    gap: 0;
    align-items: stretch;
  }
  .footer-info-col > strong { display: none; }
  .footer-accordion-header {
    position: relative;
    width: 100%;
    padding: clamp(1.05rem, 3.5vw, 1.25rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
  }
  .footer-accordion-header i {
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    transition: transform 0.25s var(--ease);
  }
  .footer-accordion-item.active .footer-accordion-header i {
    transform: rotate(180deg);
  }
  .footer-accordion-content {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
    padding: 0;
  }
  .footer-accordion-item.active .footer-accordion-content {
    max-height: 18rem;
    padding: 1rem 0 1.25rem;
  }
}

@media (max-width: 560px) {
  .stats-grid {
    gap: clamp(0.55rem, 2.2vw, 0.75rem);
  }
  .stat-item {
    min-height: clamp(5.2rem, 22vw, 5.9rem);
    padding: 0.8rem 0.35rem;
  }
  .stat-value {
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(0.92rem, 3.75vw, 1.06rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-overflow: clip;
    white-space: nowrap;
  }
  .stat-label {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(0.58rem, 2.3vw, 0.66rem);
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .services-grid { grid-template-columns: 1fr; }
  .document-card-grid { grid-template-columns: 1fr; }
}

@media (min-width: 561px) and (max-width: 767px) {
  .service-card {
    min-height: clamp(5.8rem, 10vw, 6.75rem);
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto;
    align-content: center;
    justify-items: start;
    column-gap: clamp(0.85rem, 2vw, 1.2rem);
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1rem, 2.4vw, 1.35rem);
    text-align: left;
  }
  .service-icon {
    width: clamp(3.4rem, 6vw, 4rem);
    height: clamp(3.4rem, 6vw, 4rem);
  }
  .service-card h3 {
    max-width: none;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.22rem, 10.2vw, 2.75rem); }
}

@media (min-width: 641px) and (max-width: 900px) {
  .unusual-card {
    min-height: clamp(44.85rem, 78.2vw, 50.6rem);
  }
  .unusual-card-content {
    padding-bottom: clamp(9rem, 18vw, 13rem);
  }
}

/* Bottom Footer */
.bottom-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
    min-height: 77px;
    padding: 19px 16px;
    font-size: 1rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
}.bottom-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(310px, 58vw);
    height: calc(100% - 12px);
    transform: translate(-50%, -50%);
    background: url("assets/brand/vjp-logo-white.png") center / contain no-repeat;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}.bottom-footer .footer-credit {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}.bottom-footer .footer-credit-brand {
    display: inline-flex;
    align-items: center;
}.bottom-footer .footer-credit a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}.bottom-footer .footer-credit a:visited,
.bottom-footer .footer-credit a:focus,
.bottom-footer .footer-credit a:hover {
    color: #fff !important;
}.bottom-footer .footer-credit a:hover {
    text-decoration: underline;
}.bottom-footer .footer-credit-divider,
.bottom-footer .footer-credit-year {
    display: inline-flex;
    align-items: center;
    color: #fff;
    white-space: nowrap;
}.bottom-footer .far {
    margin-right: 2px;
}

@media (max-width: 767px) {
    .bottom-footer {
        min-height: clamp(66px, 18vw, 76px);
        padding: clamp(18px, 5vw, 22px) var(--container-pad);
    }
}

/* Team section */
.team-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 53%, rgba(0, 52, 112, 0.06), transparent 36rem),
    var(--white);
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(247,249,252,0) 0%, #f7f9fc 100%);
  pointer-events: none;
}
.team-section .container {
  position: relative;
  z-index: 1;
}
.team-header {
  max-width: 760px;
  margin: 0 auto var(--section-gap);
  text-align: center;
}
.team-header h2 {
  margin: 0 auto;
  color: #071123;
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  font-weight: 800;
  line-height: 0.96;
}
.team-title-mobile {
  display: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  width: 100%;
  margin: 0 auto;
}
.team-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 233, 244, 0.96);
  border-radius: 14px;
  box-shadow: 0 20px 58px rgba(0, 52, 112, 0.09);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 72px rgba(0, 52, 112, 0.15);
}
.team-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(21rem, 24vw, 28rem);
  padding: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 52, 112, 0.14), transparent 15rem),
    linear-gradient(180deg, #fafdff 0%, #eef5ff 100%);
}
.team-photo img {
  width: 118%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.team-card-body {
  display: flex;
  flex-direction: column;
  min-height: clamp(12rem, 10.5rem + 2.2vw, 13rem);
  padding: clamp(1.25rem, 0.8rem + 1.2vw, 1.9rem);
}
.team-role {
  font-family: var(--font-heading);
  color: #003470;
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
}
.team-card h3 {
  margin-top: 0.46rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 52, 112, 0.12);
  color: #071123;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}
.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}
.team-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: #718098;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}
.team-contacts a:hover {
  color: #003470;
}
.team-contact-icon {
  width: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #003470;
  font-size: 0.95rem;
  line-height: 1;
}
.team-contact-icon--email::before,
.team-contact-icon--phone::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  background: #003470;
}
.team-contact-icon--email::before {
  -webkit-mask: url("assets/icons/email-svgrepo-com.svg") center / contain no-repeat;
  mask: url("assets/icons/email-svgrepo-com.svg") center / contain no-repeat;
}
.team-contact-icon--phone::before {
  -webkit-mask: url("assets/icons/phone-svgrepo-com.svg") center / contain no-repeat;
  mask: url("assets/icons/phone-svgrepo-com.svg") center / contain no-repeat;
}

/* Contact section redesign */
.contact-section {
  background:
    radial-gradient(circle at 74% 44%, rgba(0, 52, 112, 0.08), transparent 36rem),
    linear-gradient(180deg, #fbfcff 0%, #f7f9fc 100%);
}
.contact-section .contact-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.82fr) minmax(30rem, 1.18fr);
  gap: var(--layout-gap);
  align-items: center;
}
.contact-section .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #003470;
  margin-bottom: 1.6rem;
}
.contact-section .contact-text h2 {
  color: #071123;
  font-size: clamp(3.1rem, 5.2vw, 5.35rem);
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 1.45rem;
  letter-spacing: 0;
}
.contact-section .contact-text h2 span { color: #003470; }
.contact-section .contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(1.05rem, 0.55rem + 1.6vw, 1.75rem);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(232,234,239,0.94);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(7, 17, 35, 0.08);
}
.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.75rem + 0.7vw, 1.3rem);
  min-height: clamp(4.9rem, 4.25rem + 1.45vw, 5.55rem);
  padding: clamp(0.9rem, 0.68rem + 0.6vw, 1.12rem) 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(209, 213, 222, 0.72);
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
}
.contact-section .contact-item:last-child {
  border-bottom: 0;
}
.contact-section a.contact-item:hover {
  background: transparent;
  border-color: rgba(209, 213, 222, 0.72);
  transform: none;
  box-shadow: none;
}
.contact-section a.contact-item:hover .contact-icon {
  background: #003470;
  color: #fff;
}
.contact-section a.contact-item:hover .contact-detail strong { color: #8490a5; }
.contact-section a.contact-item:hover .contact-detail span { color: #071123; }
.contact-section .contact-icon {
  width: clamp(52px, 4.5vw, 64px);
  height: clamp(52px, 4.5vw, 64px);
  background: #003470;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-section .contact-icon svg {
  width: clamp(24px, 2.25vw, 30px);
  height: clamp(24px, 2.25vw, 30px);
  stroke-width: 2.35;
}
.contact-section .contact-detail {
  display: flex;
  flex-direction: column;
}
.contact-section .contact-detail strong {
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 0.74rem + 0.22vw, 0.92rem);
  font-weight: 700;
  color: #8490a5;
  letter-spacing: 0;
  margin-bottom: 0.22rem;
  transition: var(--transition);
}
.contact-section .contact-detail span {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  font-weight: 700;
  color: #111a2e;
  transition: var(--transition);
}
.contact-section .contact-map-col {
  position: static;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contact-section .map-embed {
  position: relative;
  width: min(100%, 41rem);
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7, 17, 35, 0.12);
  border: 1px solid rgba(255,255,255,0.9);
  background: #eaf5f2;
}
.contact-section .map-embed iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.92) contrast(0.92) brightness(1.06);
}
.contact-section .reveal,
.contact-section .reveal.active {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0s;
}
.contact-section .contact-item,
.contact-section .contact-icon,
.contact-section .contact-detail strong,
.contact-section .contact-detail span,
.contact-section .map-action,
.contact-section .map-embed iframe {
  transition: none;
}
.contact-section a.contact-item:hover {
  background: transparent;
  border-color: rgba(209, 213, 222, 0.72);
  transform: none;
  box-shadow: none;
}
.contact-section a.contact-item:hover .contact-icon {
  background: #003470;
  color: #fff;
}
.contact-section a.contact-item:hover .contact-detail strong { color: #8490a5; }
.contact-section a.contact-item:hover .contact-detail span { color: #111a2e; }
.contact-section .map-embed iframe {
  filter: none;
}
.map-location-card {
  position: absolute;
  z-index: 2;
  top: clamp(1rem, 0.65rem + 1vw, 1.65rem);
  left: clamp(1rem, 0.45rem + 1.4vw, 2rem);
  width: min(25rem, calc(100% - 4rem));
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(0.75rem, 0.55rem + 0.55vw, 1rem);
  padding: clamp(0.82rem, 0.62rem + 0.55vw, 1rem) clamp(0.9rem, 0.62rem + 0.8vw, 1.15rem);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(232,234,239,0.9);
  border-radius: 10px;
  box-shadow: 0 16px 46px rgba(7, 17, 35, 0.12);
  backdrop-filter: blur(14px);
}
.map-location-icon {
  color: #003470;
  display: flex;
}
.map-location-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.map-location-copy strong {
  color: #111a2e;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}
.map-location-copy span {
  margin-top: 0.28rem;
  color: #66738a;
  font-size: 0.9rem;
  line-height: 1.35;
}
.map-action {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #003470;
  background: var(--white);
  border: 1px solid rgba(232,234,239,0.9);
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(7, 17, 35, 0.08);
}
.map-action--blue {
  color: var(--white);
  background: #003470;
  border-color: #003470;
}
@media (max-width: 980px) {
  .team-header {
    max-width: 620px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid .team-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - var(--card-gap)) / 2);
    justify-self: center;
  }
  .team-photo {
    height: clamp(21rem, 45vw, 26rem);
  }
  .team-card-body {
    padding: clamp(1.15rem, 3vw, 1.25rem);
  }
  .contact-section .contact-layout {
    grid-template-columns: 1fr;
    gap: clamp(2.4rem, 5vw, 3rem);
  }
  .contact-section .contact-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-section .contact-item {
    min-height: clamp(4.9rem, 8.8vw, 5.55rem);
  }
  .contact-section .contact-map-col {
    position: static;
    justify-content: stretch;
  }
  .contact-section .map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}
@media (min-width: 641px) and (max-width: 980px) {
  .contact-section .contact-items {
    padding: 0 clamp(1rem, 2.6vw, 1.35rem);
  }
  .contact-section .contact-item {
    min-height: clamp(6.4rem, 10.8vw, 7.45rem);
    padding: clamp(1.28rem, 2.7vw, 1.55rem) clamp(1.05rem, 2.6vw, 1.45rem);
    border-bottom: 0;
  }
  .contact-section .contact-item:nth-child(1),
  .contact-section .contact-item:nth-child(2) {
    border-bottom: 1px solid rgba(209, 213, 222, 0.72);
  }
  .contact-section .contact-item:nth-child(odd) {
    border-right: 1px solid rgba(209, 213, 222, 0.72);
  }
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-grid .team-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
  .team-photo {
    height: clamp(21rem, 62vw, 24rem);
  }
  .team-card-body {
    min-height: auto;
  }
  .contact-section .contact-text h2 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }
  .contact-section .contact-items {
    display: flex;
    flex-direction: column;
    padding: 0 clamp(1rem, 4.8vw, 1.35rem);
    border-radius: 16px;
  }
  .contact-section .contact-item {
    min-height: clamp(5.05rem, 17vw, 5.65rem);
    padding: clamp(0.9rem, 3.8vw, 1.12rem) 0;
  }
  .contact-section .map-embed {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }
  .map-location-card {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    grid-template-columns: auto 1fr;
    border-width: 0 0 1px;
    border-radius: 18px 18px 0 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .map-action {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .review-card:hover,
  .team-card:hover {
    transform: none;
  }

  .service-card:hover {
    border-color: var(--gray-100);
    box-shadow: 0 12px 30px rgba(7, 17, 35, 0.04);
  }

  .review-card:hover {
    border-color: var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }

  .team-card:hover {
    box-shadow: 0 20px 58px rgba(0, 52, 112, 0.09);
  }

  .unusual-card:hover .unusual-card-image img {
    transform: none;
  }
}

@media (max-width: 767px) {
  h1,
  h2,
  h3,
  h4 {
    text-align: center;
  }
  .unusual-card h3 {
    text-align: left;
  }
  .team-title-desktop {
    display: none;
  }
  .team-title-mobile {
    display: inline;
  }
  .unusual-title-desktop {
    display: none;
  }
  .unusual-title-mobile {
    display: inline;
  }
  .contact-section .contact-eyebrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-header h2:not(.services-title),
  .info-text-col h2,
  .document-card-col h2,
  .unusual-header h2,
  .reviews-title-row h2,
  .team-header h2,
  .contact-section .contact-text h2 {
    max-width: min(22rem, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.15rem, 7.5vw, 2.5rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-align: center;
  }
}
