/* ============================================================
   Technický Nonstop — Components v2
   Bílá karta header / Navy hero panel / Pastelové service tiles
   ============================================================ */

/* ---------- Header (glass nav) ---------- */
.header {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 14px 20px 14px 28px;
  box-shadow: 0 20px 40px -20px rgba(8,20,40,0.18);
  position: sticky;
  top: 16px;
  z-index: 1000;
}
.header__logo { font-family: var(--font-display); }
.header__logo-text { font-family: var(--font-display); font-weight: 700; color: var(--lc-primary); letter-spacing: -0.02em; }
.nav__link { font-family: var(--font-label); font-size: 13px; font-weight: 700; }
.nav__link.is-active { color: var(--lc-primary); }
.nav__link.is-active::after { background: var(--lc-primary); height: 2px; }
.header__cta {
  background: var(--lc-primary);
  border-radius: 14px;
  padding: 11px 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px -8px rgba(0,51,102,0.4);
}
.header__cta-icon { color: #fff; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 800;
  color: var(--navy-900);
  font-size: var(--fz-md);
  flex-shrink: 0;
  font-size: 1.25rem;
}
.header__logo-mark {
  width: 40px; height: 40px;
  background: var(--navy-900);
  color: var(--yellow-500);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--fz-md);
  flex-shrink: 0;
}
.header__logo-text { line-height: 1.1; font-size: 1rem; }

.nav { display: flex; align-items: center; gap: var(--sp-2); flex: 1; justify-content: center; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: var(--sp-3) var(--sp-4);
  color: var(--gray-700);
  font-weight: 600;
  font-size: var(--fz-sm);
  border-radius: var(--r-md);
  transition: color var(--t-fast);
}
.nav__link:hover { color: var(--navy-900); }
.nav__link.is-active { color: var(--navy-900); font-weight: 700; }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: var(--sp-4); right: var(--sp-4);
  bottom: 6px;
  height: 3px;
  background: var(--yellow-500);
  border-radius: var(--r-full);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: var(--fz-sm);
  border-radius: var(--r-lg);
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.header__cta:hover { background: var(--navy-800); color: #fff; transform: translateY(-1px); }
.header__cta-icon { color: var(--yellow-500); }

.header__menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200);
  align-items: center;
  justify-content: center;
}
.header__menu-btn span,
.header__menu-btn span::before,
.header__menu-btn span::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: transform var(--t-base), opacity var(--t-base);
}
.header__menu-btn span::before { content: ''; position: absolute; top: -6px; left: 0; }
.header__menu-btn span::after { content: ''; position: absolute; top: 6px; left: 0; }
.is-menu-open .header__menu-btn span { background: transparent; }
.is-menu-open .header__menu-btn span::before { transform: translateY(6px) rotate(45deg); top: 0; }
.is-menu-open .header__menu-btn span::after { transform: translateY(-6px) rotate(-45deg); top: 0; }

@media (max-width: 980px) {
  .header { padding: var(--sp-3) var(--sp-4); border-radius: var(--r-2xl); }
  .header__menu-btn { display: inline-flex; }
  .nav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--lc-line);
    border-radius: 18px;
    padding: 12px;
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 24px 48px rgba(0,51,102,0.18);
    z-index: 999;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .is-menu-open .nav {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
    text-align: left;
    color: var(--lc-ink);
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .nav__link:hover, .nav__link:focus {
    background: rgba(0,51,102,0.04);
    border-color: var(--lc-line);
  }
  .nav__link.is-active {
    background: var(--lc-primary);
    color: #fff;
  }
  .nav__link.is-active::after { display: none; }
  .header__cta { padding: 8px 12px; font-size: 12px; gap: 6px; }
  .header__cta-icon { width: 14px; height: 14px; }
  .header__cta span { display: none; }
  /* Body lock when menu open */
  body.is-menu-open { overflow: hidden; }
  body.is-menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,51,102,0.18);
    z-index: 998;
    pointer-events: auto;
  }
}

/* ---------- Hero (navy solid + decorative gradient overlay) ---------- */
.hero {
  background: var(--lc-primary);
  color: #fff;
  padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 7vw, 7rem);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,51,102,0.3), var(--lc-primary) 70%);
  pointer-events: none;
}
.hero::after { display: none; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  border-radius: inherit;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero__text { display: flex; flex-direction: column; gap: var(--sp-5); }
.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-transform: uppercase;
}
.hero p.lead { color: rgba(255,255,255,0.85); font-size: var(--fz-md); max-width: 50ch; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

/* Hero card (right side — flotila image + status, tilted 1.5deg per design) */
.hero__card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--lc-ink);
  transform: rotate(1.5deg);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: none !important;
}
@media (max-width: 768px) {
  .hero__card { transform: none; aspect-ratio: 16/10; }
}
.hero__card-img {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.hero__card-img img,
.hero__card-img picture {
  width: 100%; height: 100%;
  display: block;
}
.hero__card-img img { object-fit: cover; }
.hero__card-img--placeholder {
  background-image: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--yellow-500);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--sp-8);
  font-weight: 700;
}

.hero__status-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(10,29,63,0.92));
  padding: var(--sp-8) var(--sp-5) var(--sp-5);
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--sp-4);
}
.hero__status-bar > div { display: flex; flex-direction: column; gap: 4px; }
.hero__status-bar .label {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.hero__status-bar .value {
  font-size: var(--fz-md);
  font-weight: 800;
  color: #fff;
}
.hero__status-bar .value-yellow { color: var(--yellow-500); }
.hero__status-bar .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: var(--r-full);
  margin-right: 6px;
  vertical-align: middle;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .hero__ctas .btn { width: 100%; }
}

/* ---------- Service tile (pastelové ikony) ---------- */
.service-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.service-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gray-200);
  box-shadow: var(--sh-lg);
}
.service-tile__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.service-tile__icon--pink { background: #fef2f2; color: var(--lc-red); }
.service-tile__icon--blue { background: #eff6ff; color: var(--lc-primary); }
.service-tile__icon--yellow { background: #fffbeb; color: #b45309; }
.service-tile__icon--green { background: rgba(34,197,94,0.08); color: var(--lc-green); }
.service-tile__icon--purple { background: #f3f4f6; color: #6d28d9; }
/* === SJEDNOCENÉ IKONY napříč webem ===
   Watercolor MJ ikony (homepage + havárie):  100×100 (mobile 88)
   SVG kategorie (cenik, sluzby):              56×56
   SVG mini (kontakt, sluzby konkrétní):       40×40
*/

/* Watercolor sketch variant — výrazná ikona s navy tintem */
.service-tile__icon--art,
.havarie-card__icon--art {
  background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(253,200,0,0.05));
  width: 100px;
  height: 100px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: var(--sp-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.service-tile__icon--art img,
.havarie-card__icon--art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 600px) {
  .service-tile__icon--art,
  .havarie-card__icon--art {
    width: 88px;
    height: 88px;
  }
}
.service-tile__icon { width: 60px; height: 60px; border-radius: 16px; }
.service-tile { padding: 40px; border-radius: 20px; border: 1px solid rgba(0,51,102,0.06); }
.service-tile h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.service-tile p { font-size: 15px; line-height: 1.6; color: var(--lc-muted); }
.service-tile__more { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.12em; color: var(--lc-primary); }
.service-tile h3 {
  font-size: var(--fz-lg);
  margin-bottom: var(--sp-3);
  color: var(--navy-900);
  font-weight: 800;
}
.service-tile p {
  color: var(--gray-700);
  font-size: var(--fz-sm);
  line-height: var(--lh-base);
  margin-bottom: var(--sp-4);
  flex: 1;
}
.service-tile__more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: var(--fz-xs);
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
}
.service-tile__more::after { content: '→'; transition: transform var(--t-fast); }
.service-tile:hover .service-tile__more::after { transform: translateX(4px); }

.service-tile__price {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
  font-weight: 700;
  color: var(--navy-900);
  font-size: var(--fz-sm);
}
.service-tile__price span { color: var(--yellow-500); margin-left: auto; }

/* ---------- Velká card "Servis a opravy kotlů" ---------- */
.feature-card {
  background: #fff;
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--gray-100);
}
.feature-card__content { padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; flex-direction: column; gap: var(--sp-4); }
.feature-card__tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; align-items: center; }
.feature-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 10px;
  background: var(--pastel-green);
  color: var(--pastel-green-fg);
  font-size: var(--fz-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
}
.feature-card__small {
  font-size: var(--fz-sm);
  color: var(--gray-500);
  font-weight: 500;
}
.feature-card h3 { font-size: var(--fz-2xl); margin: 0; color: var(--navy-900); font-weight: 800; }
.feature-card__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-2); }
.feature-card__media {
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.feature-card__media picture, .feature-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-card__media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  width: 100%; height: 100%;
}
.feature-card__media-grid > * {
  background: var(--gray-100);
  overflow: hidden;
}
.feature-card__media-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-card__media { min-height: 200px; order: -1; }
}

/* ---------- Trust band (2 fotky vlevo + statistiky vpravo) ---------- */
.trust-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 980px) {
  .trust-band { grid-template-columns: 1fr; }
}
.trust-band__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  position: relative;
}
.trust-band__photo {
  background: var(--navy-700);
  border-radius: var(--r-xl);
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  position: relative;
}
.trust-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-band__photo:first-child { aspect-ratio: 1 / 1.4; align-self: end; }
.trust-band__photo:last-child { aspect-ratio: 1 / 1.4; align-self: start; }
.trust-band__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-500); font-weight: 700; text-align: center;
  padding: var(--sp-4);
  font-size: var(--fz-sm);
}
.trust-band__content { color: #fff; }
.trust-band__content h2 { color: #fff; font-size: clamp(1.75rem, 3.2vw, 2.25rem); line-height: 1.2; }
.trust-band__content p { color: rgba(255,255,255,.85); margin-top: var(--sp-4); }
.trust-band__content .check-list { color: rgba(255,255,255,0.9); list-style: none; padding: 0; }
.trust-band__content .check-list li { padding: 6px 0 6px 28px; position: relative; }
.trust-band__content .check-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--yellow-500);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5L20 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5L20 7' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  border-radius: 4px;
}
.trust-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-band__photo:first-child { aspect-ratio: 1 / 1.4; align-self: end; }
.trust-band__photo:last-child { aspect-ratio: 1 / 1.4; align-self: start; }
.trust-band__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow-500); font-weight: 700; text-align: center;
  padding: var(--sp-4);
  font-size: var(--fz-sm);
}
.trust-band__badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow-500);
  color: var(--navy-900);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  font-weight: 900;
  font-size: var(--fz-md);
  z-index: 2;
  box-shadow: var(--sh-lg);
  text-align: center;
  line-height: 1;
}
.trust-band__badge small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-top: 2px;
}

.trust-band__content h2 { color: #fff; }
.trust-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-band__stat strong {
  display: block;
  font-size: var(--fz-3xl);
  color: var(--yellow-500);
  font-weight: 900;
  line-height: 1;
}
.trust-band__stat span {
  display: block;
  font-size: var(--fz-xs);
  color: rgba(255,255,255,0.7);
  margin-top: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

@media (max-width: 768px) {
  .trust-band { grid-template-columns: 1fr; }
}

/* ---------- 4 Stat cards (60 min, 2 roky, 365/24, Karta) ---------- */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.stat-card__icon {
  width: 44px; height: 44px;
  background: var(--pastel-blue);
  color: var(--pastel-blue-fg);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.stat-card strong {
  display: block;
  font-size: var(--fz-xl);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
}
.stat-card span {
  font-size: var(--fz-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Kontakt sekce na homepage ---------- */
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--r-3xl);
  overflow: hidden;
}
@media (max-width: 900px) {
  .home-contact { grid-template-columns: 1fr; }
}
.home-contact__navy {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.home-contact__navy::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.08), transparent 70%);
  pointer-events: none;
}
.home-contact__navy h2 { color: #fff; font-size: var(--fz-2xl); margin-bottom: var(--sp-4); }
.home-contact__navy p { color: rgba(255,255,255,0.85); margin-bottom: var(--sp-6); }
.home-contact__list { display: flex; flex-direction: column; gap: var(--sp-5); margin-top: var(--sp-6); }
.home-contact__item { display: flex; align-items: flex-start; gap: var(--sp-4); }
.home-contact__icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.12);
  color: var(--yellow-500);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-contact__item-label {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 800;
  margin-bottom: 2px;
}
.home-contact__item-value {
  font-size: var(--fz-md);
  font-weight: 800;
  color: #fff;
}
.home-contact__item-value a { color: #fff; }
.home-contact__form { padding: clamp(2rem, 4vw, 3rem); background: #fff; }
.home-contact__form h2 { font-size: var(--fz-xl); margin-bottom: var(--sp-6); }
.home-contact__form form { display: flex; flex-direction: column; gap: var(--sp-4); }
.home-contact__form .grid { gap: var(--sp-4); }

/* Form field — label + input pair */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label,
.field-upload label.upload-area + .upload-list,
.lc-form label {
  font-family: var(--font-label, var(--font-stack));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  color: var(--navy-900);
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(20, 48, 99, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }
.field textarea { resize: vertical; min-height: 88px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236b7280' stroke-width='2'><path d='M1 1l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }
.field-upload { margin-top: var(--sp-2); }

/* File upload — drag-drop area */
.field-upload {
  margin-bottom: var(--sp-5);
}
.field-upload label.upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-6);
  border: 2px dashed var(--gray-300);
  border-radius: var(--r-lg);
  background: var(--gray-50);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: var(--fz-sm);
  color: var(--gray-500);
}
.field-upload label.upload-area:hover,
.field-upload label.upload-area.is-drag {
  border-color: var(--navy-700);
  background: rgba(20,48,99,0.04);
  color: var(--navy-700);
}
.field-upload .upload-icon {
  width: 36px; height: 36px;
  background: var(--pastel-blue);
  color: var(--pastel-blue-fg);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.field-upload .upload-strong { font-weight: 700; color: var(--navy-900); font-size: var(--fz-sm); }
.field-upload .upload-hint { font-size: var(--fz-xs); color: var(--gray-500); }
.field-upload input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.upload-list {
  display: flex; flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  list-style: none;
}
.upload-list li {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 8px 4px 4px;
  background: var(--pastel-blue);
  color: var(--pastel-blue-fg);
  border-radius: var(--r-md);
  font-size: var(--fz-xs);
  font-weight: 600;
}
.upload-list li img {
  width: 28px; height: 28px;
  object-fit: cover;
  border-radius: var(--r-sm);
}
.upload-list li button {
  width: 18px; height: 18px;
  background: rgba(0,0,0,0.1);
  color: inherit;
  border-radius: var(--r-full);
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 768px) {
  .home-contact { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  height: 100%;
}
.review__header { display: flex; align-items: center; gap: var(--sp-3); justify-content: space-between; }
.review__author { display: flex; align-items: center; gap: var(--sp-3); }
.review__avatar {
  width: 40px; height: 40px;
  background: var(--pastel-blue);
  color: var(--pastel-blue-fg);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: var(--fz-sm);
}
.review__name { font-weight: 700; color: var(--navy-900); font-size: var(--fz-sm); }
.review__date { color: var(--gray-500); font-size: var(--fz-xs); }
.review__stars { color: var(--yellow-500); font-size: var(--fz-sm); letter-spacing: 1px; }
.review__text { color: var(--gray-700); font-size: var(--fz-sm); line-height: var(--lh-loose); flex: 1; }
.review__service { color: var(--gray-500); font-size: var(--fz-xs); margin-top: auto; }

/* ---------- Mega-CTA pás ---------- */
.mega-cta {
  position: relative;
  background:
    radial-gradient(ellipse at center top, rgba(253,200,0,0.18), transparent 55%),
    var(--lc-primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) var(--sp-5) clamp(4rem, 8vw, 6rem);
  text-align: center;
  overflow: hidden;
  border-radius: 32px;
}
.mega-cta__phone { color: var(--lc-yellow); font-family: var(--font-display); }
.mega-cta__label { font-family: var(--font-label); letter-spacing: 0.16em; }
.mega-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.mega-cta__label {
  font-size: var(--fz-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.72);
}
.mega-cta__phone {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--yellow-500);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  text-shadow: 0 8px 32px rgba(245,197,24,0.3);
  transition: transform var(--t-base);
}
.mega-cta__phone:hover { color: var(--yellow-400); transform: scale(1.02); }
.mega-cta__sub { font-size: var(--fz-md); color: rgba(255,255,255,0.85); max-width: 540px; }
.mega-cta__perks {
  display: flex; flex-wrap: wrap; gap: var(--sp-6);
  justify-content: center;
  margin-top: var(--sp-2);
  font-size: var(--fz-sm);
  color: rgba(255,255,255,0.85);
}
.mega-cta__perks span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.mega-cta__perks span::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: var(--r-full);
}

/* ---------- Sticky mobile call ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, calc(env(safe-area-inset-bottom, 0px) + 6px));
  z-index: 1001;
  background: var(--lc-yellow);
  color: var(--lc-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(13,22,38,0.28), 0 3px 10px rgba(13,22,38,0.14);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 120ms ease, background 120ms ease;
}
.sticky-call:hover,
.sticky-call:focus-visible { color: var(--lc-primary); background: #ffd24a; transform: translateY(-1px); }
.sticky-call:active { transform: translateY(0); }
.sticky-call svg { flex-shrink: 0; }
@media (max-width: 767px) {
  .sticky-call { display: inline-flex; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .footer { margin-bottom: 0; }
}
/* On desktop hide entirely */
@media (min-width: 768px) {
  .sticky-call { display: none !important; }
}
/* Very small phones (iPhone SE 320px) — drop label, keep just icon + number */
@media (max-width: 359px) {
  .sticky-call { font-size: 14px; padding: 12px 14px; }
}

/* ---------- Footer (4 sloupce s ikonami, LC primary) ---------- */
.footer {
  background: var(--lc-primary);
  color: rgba(255,255,255,0.85);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem) var(--sp-6);
  font-size: var(--fz-sm);
  position: relative;
  border-radius: 32px;
}
.footer h4 { font-family: var(--font-label); }
.footer .header__logo-text { font-family: var(--font-display); }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--yellow-500); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--sp-10);
}
.footer__col h4 {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-5);
  font-weight: 800;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col--logo .header__logo { color: #fff; font-size: var(--fz-md); }
.footer__col--logo p { line-height: 1.7; max-width: 30ch; }

.footer__contact-item {
  display: flex; align-items: center;
  gap: var(--sp-3);
}
.footer__contact-icon {
  width: 36px; height: 36px;
  background: rgba(245,197,24,0.12);
  color: var(--yellow-500);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__contact-item strong { color: #fff; font-weight: 700; }
.footer__contact-item span { font-size: var(--fz-sm); }

.footer__social {
  display: flex; gap: var(--sp-3); margin-top: var(--sp-5);
}
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.footer__social a:hover { background: var(--yellow-500); color: var(--navy-900); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fz-xs);
  color: rgba(255,255,255,0.5);
}
.footer__status {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 11px;
}
.footer__status .dot {
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: var(--r-full);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb (Manrope uppercase per LC design) ---------- */
.breadcrumb {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-muted);
  padding: 16px clamp(1.25rem, 4vw, 3rem);
  background: transparent;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--lc-line); }
.breadcrumb a { color: var(--lc-muted); }
.breadcrumb a:hover { color: var(--lc-primary); }
.breadcrumb li:last-child { color: var(--lc-primary); }

/* ---------- Page hero (subpages) — LC style ---------- */
.page-hero {
  background: var(--lc-primary);
  color: #fff;
  padding: 60px clamp(1.5rem, 4vw, 3rem) 40px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 50%, rgba(253,200,0,0.1), transparent 40%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 1200px; }
.page-hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  margin-bottom: var(--sp-5);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.page-hero p.lead { color: rgba(255,255,255,0.75); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.6; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.page-hero__meta-pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Sjednocené typo pro card komponenty na subpages */
.card { background: #fff; border: 1px solid rgba(0,51,102,0.06); border-radius: 20px; box-shadow: 0 12px 24px -6px rgba(8,20,40,0.05), 0 2px 4px rgba(8,20,40,0.03); }
.card h3 { font-family: var(--font-display); font-weight: 700; }
.divider-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,51,102,0.12), transparent); margin: var(--sp-6) 0; }

/* ---------- FAQ — LC card style ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq {
  background: #fff;
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 24px -6px rgba(8,20,40,0.05), 0 2px 4px rgba(8,20,40,0.03);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lc-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-4);
  font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--lc-primary);
  font-weight: 300;
  flex-shrink: 0;
  font-family: var(--font-stack);
}
.faq[open] summary::after { content: '−'; }
.faq-body { padding: 0 22px 18px; color: var(--lc-muted); line-height: 1.6; font-size: 14px; }

/* ---------- Region grid ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--sp-3);
}
.region-grid li {
  list-style: none;
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fz-sm);
  font-weight: 600;
  color: var(--navy-900);
  text-align: center;
}

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100);
}
.price-table th, .price-table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.price-table th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: var(--fz-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-table td.price { font-weight: 800; color: var(--navy-900); white-space: nowrap; text-align: right; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--gray-50); }

@media (max-width: 600px) {
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; }
  .price-table tr {
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    margin-bottom: var(--sp-3);
    padding: var(--sp-3);
  }
  .price-table td { border: 0; padding: var(--sp-2) 0; }
  .price-table td.price { text-align: left; }
}

/* ---------- TOC sidebar (legal pages) ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.toc {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  font-size: var(--fz-sm);
}
.toc h4 {
  font-size: var(--fz-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: var(--sp-3);
}
.toc ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-1); }
.toc a { display: block; padding: var(--sp-2) var(--sp-3); color: var(--gray-700); border-radius: var(--r-sm); font-weight: 600; }
.toc a:hover { background: #fff; color: var(--navy-900); }

.legal-content h2 { margin-top: var(--sp-10); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: var(--sp-6); }
.legal-content p, .legal-content ul, .legal-content ol { margin-bottom: var(--sp-4); line-height: var(--lh-loose); }
.legal-content ul, .legal-content ol { padding-left: var(--sp-6); }

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  /* Mobile: sit ABOVE sticky-call (sticky-call ~64px tall + 10px gap + safe area) */
  bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  left: var(--sp-4); right: var(--sp-4);
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--sp-5);
  z-index: 999;
  font-size: var(--fz-sm);
  display: none;
  gap: var(--sp-4);
  flex-direction: column;
}
@media (min-width: 768px) {
  /* Desktop: no sticky-call, banner sits at usual bottom */
  .cookie-banner { bottom: var(--sp-4); }
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: var(--sp-3) var(--sp-5); min-height: 40px; font-size: var(--fz-sm); }

/* ---------- Form wrapper / contact (subpages) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Section helpers (uvnitř bílých karet) ---------- */
.section { padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem); }
.section--sm { padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 4vw, 3rem); }
.section--lg { padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem); }
.section--white { background: #fff; }
.section--gray { background: var(--gray-50); }
1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--sp-8);
}
.footer__grid h4 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: var(--sp-2); }
.footer__contact-item { display: flex; gap: var(--sp-3); align-items: flex-start; margin-bottom: var(--sp-3); }
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer__status-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 12px;
  background: rgba(34,197,94,0.14);
  color: #86efac;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   LC SERVICE DETAIL — page-hero split + pricing card
   ===================================================== */

.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
  color: #fff;
}
.page-hero .lbl {
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.16em;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--sp-5);
}
.page-hero .lbl a { color: rgba(255,255,255,0.62); text-decoration: none; }
.page-hero .lbl a:hover { color: var(--lc-yellow); }

.page-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .page-hero__split { grid-template-columns: 1fr; }
}

.page-hero__left h1.h-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 var(--sp-5);
  color: #fff;
}
.page-hero__left .lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 var(--sp-6);
}

.page-hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.page-hero__meta-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}

.page-hero__ctas {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
}

/* Pricing card on hero right side */
.pricing-card {
  background: #fff;
  color: var(--lc-ink);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.18),
    0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}
.pricing-card .lbl {
  color: var(--lc-primary);
  letter-spacing: 0.14em;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--sp-4);
}
.pricing-card__lead {
  display: flex; flex-direction: column;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--lc-line);
}
.pricing-card__lead-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--lc-primary);
  letter-spacing: -0.02em;
}
.pricing-card__lead-label {
  font-size: 14px;
  color: var(--lc-muted);
  margin-top: var(--sp-2);
  line-height: 1.4;
}
.pricing-card__list {
  list-style: none; padding: 0; margin: 0 0 var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.pricing-card__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: var(--sp-3);
  font-size: 14px;
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed var(--lc-line);
}
.pricing-card__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.pricing-card__list-label { color: var(--lc-ink); }
.pricing-card__list-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lc-primary);
  white-space: nowrap;
}
.pricing-card__note {
  font-size: 12px;
  color: var(--lc-muted);
  margin: 0 0 var(--sp-4);
  line-height: 1.5;
}
.pricing-card .btn { width: 100%; }

/* Points grid (3-col cards with check icons) */
.service-intro {
  max-width: 70ch;
  margin-bottom: var(--sp-4);
}
.service-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  margin: 0 0 var(--sp-4);
  color: var(--lc-primary);
}
.service-intro p { font-size: 16px; line-height: 1.7; color: var(--lc-ink); margin: 0; }

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 768px) {
  .points-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .points-grid { grid-template-columns: 1fr 1fr; }
}
.point-card {
  background: rgba(0,51,102,0.03);
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 16px;
  padding: var(--sp-5);
  display: flex; gap: var(--sp-4);
  align-items: flex-start;
}
.point-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,51,102,0.06);
  color: var(--lc-primary);
  border-radius: 12px;
}
.point-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--lc-ink);
}

/* Tech split (navy card 1:1 with yellow checkmarks) */
.tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 768px) { .tech-split { grid-template-columns: 1fr; } }
.tech-split .lbl {
  color: var(--lc-yellow);
  letter-spacing: 0.16em;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--sp-3);
}
.tech-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  color: #fff;
  margin: 0 0 var(--sp-4);
}
.tech-split p { color: rgba(255,255,255,0.78); margin: 0; line-height: 1.7; }
.tech-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.tech-list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.tech-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.check-yellow {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245,197,24,0.15);
  color: var(--lc-yellow);
  border-radius: 8px;
  margin-top: 1px;
}

/* Real-photo gallery tiles */
.real-photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,51,102,0.10);
  display: block;
}
.real-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.real-photo:hover img { transform: scale(1.04); }

/* Price table refinement */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-4);
  font-size: 15px;
}
.price-table th, .price-table td {
  padding: var(--sp-4) var(--sp-3);
  border-bottom: 1px solid var(--lc-line);
  text-align: left;
}
.price-table th {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lc-muted);
}
.price-table td.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lc-primary);
  white-space: nowrap;
  text-align: right;
}

/* FAQ list refinement */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq[open] { box-shadow: 0 8px 24px rgba(0,51,102,0.08); }
.faq summary {
  padding: var(--sp-5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--lc-ink);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
}
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--lc-primary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq[open] summary::after { content: '−'; }
.faq summary::-webkit-details-marker { display: none; }
.faq-body {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--lc-muted);
  line-height: 1.7;
  font-size: 15px;
}
.faq-body p { margin: 0; }

/* Section card titles (h-title) */
.section-card .h-title,
.section-card--navy .h-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: var(--sp-3) 0 var(--sp-4);
}
.section-card .lbl,
.section-card--navy .lbl {
  color: var(--lc-primary);
  letter-spacing: 0.16em;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
}
.section-card--navy .lbl { color: var(--lc-yellow); }

/* =====================================================
   /CENIK/ — stat row + pricing categories grid
   ===================================================== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
@media (max-width: 768px) { .stat-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stat-row { grid-template-columns: 1fr; } }
.stat-cell {
  background: rgba(0,51,102,0.03);
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 16px;
  padding: var(--sp-5);
  text-align: left;
}
.stat-cell__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lc-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-cell__label {
  display: block;
  font-size: 13px;
  color: var(--lc-muted);
  line-height: 1.5;
}

.price-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 1024px) { .price-cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .price-cats { grid-template-columns: 1fr; } }
.price-cat {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  padding: var(--sp-6);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.price-cat:hover {
  box-shadow: 0 14px 32px rgba(0,51,102,0.10);
  transform: translateY(-2px);
}
.price-cat__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: var(--sp-4);
}
.price-cat h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lc-ink);
  margin: 0 0 var(--sp-2);
}
.price-cat p {
  font-size: 14px;
  color: var(--lc-muted);
  line-height: 1.5;
  margin: 0 0 var(--sp-4);
}
.price-cat .price-table {
  margin-top: auto;
  font-size: 14px;
}
.price-cat .price-table td {
  padding: var(--sp-3) 0;
  font-size: 14px;
}
.price-cat .price-table td.price {
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lc-primary);
}

/* =====================================================
   /KONTAKT/ — contact ways + form split + file upload
   ===================================================== */
.contact-ways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 900px) { .contact-ways { grid-template-columns: 1fr; } }
.contact-way {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  padding: var(--sp-6);
  display: flex; flex-direction: column;
  gap: var(--sp-3);
}
.contact-way__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
}
.contact-way h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--lc-ink);
  margin: 0;
}
.contact-way p { font-size: 14px; color: var(--lc-muted); line-height: 1.6; margin: 0; }
.contact-way .btn { margin-top: auto; }

/* Form split: intro left + form right */
.form-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: var(--sp-4);
}
@media (max-width: 900px) { .form-split { grid-template-columns: 1fr; } }
.form-split__intro h2 { color: var(--lc-primary); }
.form-split__intro p { font-size: 16px; line-height: 1.7; color: var(--lc-ink); margin: 0 0 var(--sp-5); }
.form-split__perks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.form-split__perks li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 14px; color: var(--lc-ink); line-height: 1.5;
}
.form-split__perks .check-yellow {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 7px;
  margin-top: 1px;
}

/* LC form */
.lc-form {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 12px 30px rgba(0,51,102,0.06);
}
.lc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) { .lc-form__row { grid-template-columns: 1fr; } }
.lc-form .field { margin-bottom: var(--sp-4); }
.lc-form label {
  display: block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lc-ink);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}
.lc-form .req { color: var(--lc-red); margin-left: 4px; }
.lc-form input[type="text"],
.lc-form input[type="tel"],
.lc-form input[type="email"],
.lc-form select,
.lc-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--lc-ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.lc-form input:focus,
.lc-form select:focus,
.lc-form textarea:focus {
  outline: none;
  border-color: var(--lc-primary);
  box-shadow: 0 0 0 3px rgba(0,51,102,0.10);
}
.lc-form textarea { resize: vertical; min-height: 120px; }
.lc-form .field--check {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  margin-top: var(--sp-5);
}
.lc-form .field--check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--lc-primary);
}
.lc-form .field--check label {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--lc-muted);
  margin: 0;
  line-height: 1.5;
}
.lc-form .field--check label a { color: var(--lc-primary); font-weight: 600; }
.lc-form .btn--block { width: 100%; margin-top: var(--sp-4); }
.lc-form .form-note {
  font-size: 12px;
  color: var(--lc-muted);
  text-align: center;
  margin: var(--sp-4) 0 0;
}
.lc-form .form-note a { color: var(--lc-primary); }

/* File upload */
.file-upload {
  position: relative;
  border: 2px dashed var(--lc-line);
  border-radius: 12px;
  background: rgba(0,51,102,0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.file-upload:hover { border-color: var(--lc-primary); background: rgba(0,51,102,0.04); }
.file-upload input[type="file"] {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.file-upload__inner {
  display: flex; flex-direction: column; align-items: center;
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  pointer-events: none;
  gap: var(--sp-2);
}
.file-upload__icon { color: var(--lc-primary); }
.file-upload__text { font-size: 14px; color: var(--lc-ink); }
.file-upload__sub { font-size: 12px; color: var(--lc-muted); }
.file-upload__list { padding: 0 var(--sp-4) var(--sp-4); font-size: 13px; color: var(--lc-muted); }
.file-upload__list:empty { display: none; }
.file-upload__list .file-item {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 4px 10px;
  background: rgba(0,51,102,0.08);
  border-radius: var(--r-full);
  margin: 0 var(--sp-1) var(--sp-1) 0;
  font-size: 12px;
  color: var(--lc-primary);
}

/* Map wrap */
.map-wrap {
  margin-top: var(--sp-6);
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--lc-line);
  box-shadow: 0 12px 30px rgba(0,51,102,0.08);
}
.map-wrap iframe { width: 100%; height: 100%; display: block; }

/* =====================================================
   /BLOG/ + /REFERENCE/ — article hero + prose + case story
   ===================================================== */
.page-hero__article {
  max-width: 760px;
}
.page-hero__article h1.h-display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: var(--sp-3) 0 var(--sp-5);
  color: #fff;
}
.page-hero__article .lead {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 0 var(--sp-5);
}

/* Prose — blog body */
.prose {
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.78;
  color: var(--lc-ink);
}
.prose p { margin: 0 0 var(--sp-5); }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 700;
  color: var(--lc-primary);
  margin: var(--sp-8) 0 var(--sp-4);
  letter-spacing: -0.015em;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--lc-ink);
  margin: var(--sp-6) 0 var(--sp-3);
}
.prose strong { color: var(--lc-primary); }
.prose a { color: var(--lc-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: var(--sp-5); margin: 0 0 var(--sp-5); }
.prose li { margin-bottom: var(--sp-2); }
.prose blockquote {
  border-left: 3px solid var(--lc-yellow);
  padding: var(--sp-2) var(--sp-5);
  margin: var(--sp-5) 0;
  background: rgba(245,197,24,0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--lc-ink);
}

/* Case studies — facts row + step story */
.case-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
@media (max-width: 768px) { .case-facts { grid-template-columns: 1fr 1fr; } }
.case-fact {
  background: rgba(0,51,102,0.03);
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 12px;
  padding: var(--sp-4);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.case-fact__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-muted);
  font-weight: 700;
}
.case-fact__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--lc-ink);
}

.case-story {
  display: flex; flex-direction: column;
  gap: var(--sp-8);
  position: relative;
}
.case-step {
  position: relative;
  padding: var(--sp-6) var(--sp-6) var(--sp-6) calc(var(--sp-6) * 2 + 36px);
  background: rgba(0,51,102,0.02);
  border: 1px solid var(--lc-line);
  border-radius: 16px;
}
.case-step__num {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--lc-primary);
  color: var(--lc-yellow);
  font-family: var(--font-mono, var(--font-display));
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  letter-spacing: 0;
}
.case-step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin: 0 0 var(--sp-3);
  color: var(--lc-primary);
}
.case-step--outcome { background: rgba(245,197,24,0.06); border-color: rgba(245,197,24,0.18); }
.case-step--outcome .case-step__num { background: var(--lc-yellow); color: var(--lc-primary); }
.case-step--outcome h3 { color: var(--lc-primary); }
.case-step p { margin: 0; line-height: 1.7; color: var(--lc-ink); }
@media (max-width: 600px) {
  .case-step { padding: calc(var(--sp-6) + 50px) var(--sp-5) var(--sp-5); }
  .case-step__num { left: var(--sp-5); }
}

/* =====================================================
   /HAVARIE/ — havarie cards grid + process timeline
   ===================================================== */
.havarie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 768px) { .havarie-grid { grid-template-columns: 1fr; } }
.havarie-card {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  padding: var(--sp-6);
}
.havarie-card__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: var(--sp-4);
}
/* Havárie card watercolor icon variant — větší pro card */
.havarie-card__icon--art {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(253,200,0,0.05));
  padding: 6px;
  border-radius: 18px;
  overflow: hidden;
}
.havarie-card__icon--art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 600px) {
  .havarie-card__icon--art {
    width: 88px;
    height: 88px;
  }
}
.havarie-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lc-ink);
  margin: 0 0 var(--sp-3);
  line-height: 1.3;
}
.havarie-card p {
  font-size: 14.5px;
  color: var(--lc-muted);
  line-height: 1.6;
  margin: 0 0 var(--sp-4);
}
.havarie-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.havarie-points li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--lc-ink);
  line-height: 1.5;
}
.havarie-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--lc-yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(245,197,24,0.3);
}

/* Process timeline (navy card) */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
  position: relative;
}
@media (max-width: 1024px) { .process-timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-timeline { grid-template-columns: 1fr; } }
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: var(--sp-5);
  display: flex; flex-direction: column;
  gap: var(--sp-3);
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--lc-yellow);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
}

/* =====================================================
   HUBS — team-tile, blog-tile, brand-tile, case-tile, code-tile
   ===================================================== */
.team-grid, .blog-grid, .brand-grid, .case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 1024px) { .team-grid, .blog-grid, .brand-grid, .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .team-grid, .blog-grid, .brand-grid, .case-grid { grid-template-columns: 1fr; } }

.team-tile, .blog-tile, .brand-tile, .case-tile {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  padding: var(--sp-6);
  text-decoration: none;
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-tile:hover, .blog-tile:hover, .brand-tile:hover, .case-tile:hover {
  box-shadow: 0 14px 32px rgba(0,51,102,0.10);
  transform: translateY(-2px);
}
.team-tile h3, .blog-tile h3, .brand-tile h3, .case-tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--lc-ink);
  margin: 0;
  line-height: 1.3;
}
.team-tile p, .blog-tile p, .brand-tile p, .case-tile p {
  font-size: 14px;
  color: var(--lc-muted);
  line-height: 1.55;
  margin: 0;
}
.team-tile .lbl, .blog-tile .lbl, .brand-tile .lbl, .case-tile .lbl {
  color: var(--lc-primary);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-label);
}

/* Avatar circle for team */
.team-tile__avatar, .team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--lc-primary) 0%, var(--lc-primary-light) 100%);
  color: var(--lc-yellow);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.team-card {
  background: #fff;
  color: var(--lc-ink);
  border-radius: 22px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.team-card .team-card__avatar { width: 80px; height: 80px; font-size: 28px; }
.team-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--lc-ink); margin: 0; }
.team-card p { color: var(--lc-muted); font-size: 14px; margin: 0; }
.team-card .lbl { color: var(--lc-primary); font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; font-family: var(--font-label); }
.team-card .pricing-card__list { margin: var(--sp-2) 0 var(--sp-4); }
.team-card .btn { width: 100%; }

/* Blog featured card */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: var(--sp-6);
  background: rgba(0,51,102,0.03);
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 18px;
  padding: var(--sp-6);
}
@media (max-width: 768px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lc-primary) 0%, var(--lc-primary-light) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lc-yellow);
  font-size: 80px;
}
.blog-featured__placeholder { font-size: 60px; opacity: 0.6; }
.blog-featured__body h2 { font-family: var(--font-display); font-size: clamp(1.375rem, 2.4vw, 1.875rem); color: var(--lc-primary); margin: var(--sp-3) 0 var(--sp-3); }
.blog-featured__body p { font-size: 15px; color: var(--lc-ink); line-height: 1.6; margin: 0 0 var(--sp-5); }

/* Code tile (per-brand error codes) */
.code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
@media (max-width: 600px) { .code-grid { grid-template-columns: 1fr; } }
.code-tile {
  display: flex; align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.code-tile:hover { border-color: var(--lc-primary); transform: translateX(2px); }
.code-tile__code {
  font-family: var(--font-mono, monospace);
  font-size: 22px;
  font-weight: 800;
  color: var(--lc-yellow);
  background: var(--lc-primary);
  padding: 6px 14px;
  border-radius: 10px;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}
.code-tile__name {
  font-size: 14px;
  color: var(--lc-ink);
  flex: 1;
  line-height: 1.4;
}
.code-tile .service-tile__more { color: var(--lc-primary); font-size: 18px; }

/* =====================================================
   CLS=0 — aspect-ratio na <picture> a <img>
   ===================================================== */
picture { display: block; }
.hero__card-img picture, .hero__card-img img { aspect-ratio: 4 / 3; width: 100%; }
.hero__card-img img { object-fit: cover; }
/* Generic safety net — every <img> without size gets CLS-safe aspect-ratio */
img:not([width]):not([height]):not(.no-aspect) { aspect-ratio: attr(width) / attr(height); }
/* Real-photo + blog featured already have aspect-ratio defined */

/* Realization gallery — homepage */
.realization-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
@media (max-width: 900px) { .realization-grid { grid-template-columns: 1fr 1fr; } }
.realization-tile {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,51,102,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--lc-line);
}
.realization-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,51,102,0.18);
}
.realization-tile picture, .realization-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.realization-tile:hover img { transform: scale(1.05); }

/* Vehicle list — vozovy-park page */
.vehicle-list {
  display: flex; flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-6);
}
.vehicle-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-6);
  background: rgba(0,51,102,0.03);
  border: 1px solid rgba(0,51,102,0.06);
  border-radius: 18px;
  padding: var(--sp-5);
  align-items: center;
}
@media (max-width: 768px) { .vehicle-card { grid-template-columns: 1fr; } }
.vehicle-card__img {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 12px;
  background: var(--lc-line);
}
.vehicle-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.vehicle-card__body { padding: var(--sp-2); }
.vehicle-card__badge {
  display: inline-block;
  background: var(--lc-yellow);
  color: var(--lc-primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========================================================================
   FIXES — 2. 5. 2026 — about-us layout, ceník bublina, kontakt bublina,
   /sluzby/ tile icons, mobile dotazník alignment
   ======================================================================== */

/* About-us "Kdo to vlastně dělá" — desktop 2-col, mobile 1-col */
.about-us {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: var(--sp-6);
}
.about-us__media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
.about-us__media picture {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--gray-100);
}
.about-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-us__youtube {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.about-us__youtube a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--lc-primary);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fz-sm);
  text-decoration: none;
}
.about-us__youtube a:first-child { background: #cd201f; }
.about-us__youtube a:hover { transform: translateY(-1px); }
@media (max-width: 900px) {
  .about-us { grid-template-columns: 1fr; }
}

/* Ceník bubliny — sjednotit centrování ikony s textem */
.price-cat {
  text-align: left;
}
.price-cat__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}
.price-cat__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Kontakt — bublina v ose */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.contact-grid > * {
  margin: 0;
  width: 100%;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Home-contact — symmetric padding na navy + form box */
.home-contact__navy,
.home-contact__form {
  padding: clamp(2rem, 4vw, 3rem);
}
.home-contact__form {
  background: #fff;
}
@media (max-width: 900px) {
  .home-contact__navy,
  .home-contact__form {
    padding: var(--sp-6) var(--sp-5);
  }
}

/* Mobile fix pro service-tile na /sluzby/ — žádný overflow + form padding */
@media (max-width: 600px) {
  .service-tile {
    padding: var(--sp-5) var(--sp-5);
  }
  .grid--3 {
    grid-template-columns: 1fr !important;
  }
  .home-contact {
    border-radius: var(--r-xl);
  }
  .home-contact__form .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Service-tile na /sluzby/ — mini ikonky vlevo nahoře */
.service-tile__mini-icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--sp-3);
  background: var(--gray-50);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lc-primary);
  flex-shrink: 0;
}
.service-tile__mini-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.vehicle-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lc-primary);
  margin: 0 0 var(--sp-3);
}
.vehicle-card__specs {
  list-style: none; padding: 0; margin: 0 0 var(--sp-3);
  display: flex; flex-direction: column; gap: 6px;
}
.vehicle-card__specs li {
  font-size: 14px; color: var(--lc-ink);
  padding: 6px 0;
  border-bottom: 1px dashed var(--lc-line);
}
.vehicle-card__specs li:last-child { border-bottom: 0; }
.vehicle-card__specs strong { color: var(--lc-primary); }

/* Bagr cards (navy) */
.bagr-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: var(--sp-5);
}
.bagr-card h3 {
  font-family: var(--font-display);
  color: var(--lc-yellow);
  margin: 0 0 var(--sp-4);
  font-size: 18px;
}
.bagr-card .check-list li { color: rgba(255,255,255,0.92); }
.bagr-card .check-list li::before { background: var(--lc-yellow); color: var(--lc-primary); }

/* Home contact form polish */
.home-contact__form .field { margin-bottom: var(--sp-4); }
.home-contact__form label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lc-ink);
  margin-bottom: 6px;
}
.home-contact__form input[type="text"],
.home-contact__form input[type="tel"],
.home-contact__form input[type="email"],
.home-contact__form select,
.home-contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--lc-ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.home-contact__form input:focus,
.home-contact__form select:focus,
.home-contact

/* =========================================================
   ICON SIZE OVERRIDES — watercolor --art varianty (zvetseno 2x)
   Datum: 2026-05-03
   ========================================================= */
.price-cat__icon--art {
  width: 104px !important;
  height: 104px !important;
  background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(253,200,0,0.05));
  padding: 6px;
  border-radius: 18px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.price-cat__icon--art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.service-tile__mini-icon--art {
  width: 80px !important;
  height: 80px !important;
  background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(253,200,0,0.05));
  padding: 5px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.service-tile__mini-icon--art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.contact-way__icon--art {
  width: 128px !important;
  height: 128px !important;
  background: linear-gradient(135deg, rgba(0,51,102,0.04), rgba(253,200,0,0.05));
  padding: 8px;
  border-radius: 24px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-way__icon--art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

@media (max-width: 600px) {
  .price-cat__icon--art {
    width: 88px !important;
    height: 88px !important;
  }
  .service-tile__mini-icon--art {
    width: 68px !important;
    height: 68px !important;
  }
  .contact-way__icon--art {
    width: 104px !important;
    height: 104px !important;
  }
}


/* === LAYOUT FIX: equal-width dlaždice + min-height === */
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
@media (max-width: 980px) {
  .grid--2 { grid-template-columns: 1fr !important; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px) {
  .grid--3 { grid-template-columns: 1fr !important; }
}

.service-tile {
  min-height: 240px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.service-tile h3 {
  min-height: 56px;
  display: flex;
  align-items: flex-start;
}
.service-tile p {
  flex: 1;
}

/* Mini-icon dlaždice (Konkrétní úkony) - sjednotit vzhled */
.service-tile__mini-icon--art {
  margin-bottom: var(--sp-4) !important;
}


/* === FOOTER FIX: zarucit 4 sloupcovy layout, sjednotit obsah === */
.footer {
  width: 100%;
  box-sizing: border-box;
}
.footer__grid {
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
}
.footer__grid > .footer__col {
  min-width: 0;
  word-wrap: break-word;
}
.footer__col h4 {
  color: #fff !important;
  font-size: 13px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col ul li {
  margin-bottom: 0.5rem;
}
.footer__col ul li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
}
.footer__col ul li a:hover {
  color: var(--lc-yellow);
}

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr !important; }
}
