@import url('https://fonts.googleapis.com/css2?family=Arial+Black&family=Inter&family=Montserrat:wght@400;500;700&display=swap');

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}
.strip.underlay-sticky {
    margin-top: calc(-1 * var(--sticky-header-height, 0px)) !important;
}

.strip.underlay-sticky > :first-child {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Admin Editor: bypass injected overlay layers and style the actual user section content. */
.strip.underlay-sticky > .pa-iframe-controls,
.strip.underlay-sticky > .pa-iframe-frame,
.strip.underlay-sticky > .pa-iframe-veil {
    border-top: none !important;
    background-origin: padding-box !important;
    background-clip: border-box !important;
}

.strip.underlay-sticky > .pa-iframe-controls + .pa-iframe-frame + .pa-iframe-veil + * {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Administration Editor: keep the divider visible without letting it offset the underlay strip. */
.pa-iframe-divider:has(+ .strip.underlay-sticky):not(.pa-iframe-expanded) {
    height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
    z-index: 1000;
}.strip[data-id="951485"] {
  --section-id: "951485";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/951485";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/951485";
  /* Hamburger Menu */
}
.strip[data-id="951485"] {
  /* Position sticky is handled by system property */
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.strip[data-id="951485"].scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.strip[data-id="951485"] .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.3s ease;
}
.strip[data-id="951485"] .scrolled .header-container {
  height: 70px;
}
.strip[data-id="951485"] .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
}
.strip[data-id="951485"] .logo-img {
  height: 55px;
  width: auto;
  transition: height 0.3s ease;
  display: block;
  /* Ensuring the non-transparent logo looks clean */
  object-fit: contain;
}
.strip[data-id="951485"] .scrolled .logo-img {
  height: 45px;
}
.strip[data-id="951485"] .nav-menu {
  display: flex;
  align-items: center;
}
.strip[data-id="951485"] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.strip[data-id="951485"] .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1A1A1A;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding: 5px 0;
}
.strip[data-id="951485"] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E30613;
  transition: width 0.3s ease;
}
.strip[data-id="951485"] .nav-link:hover {
  color: #E30613;
}
.strip[data-id="951485"] .nav-link:hover::after {
  width: 100%;
}
.strip[data-id="951485"] .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.strip[data-id="951485"] .nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: #1A1A1A;
  transition: all 0.3s ease;
  border-radius: 2px;
}
@media (max-width: 1100px) {
  .strip[data-id="951485"] .nav-list {
    gap: 12px;
  }
  .strip[data-id="951485"] .nav-link {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .strip[data-id="951485"] {
    /* Overlay when mobile menu is open */
  }
  .strip[data-id="951485"] .nav-toggle {
    display: flex;
  }
  .strip[data-id="951485"] .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .strip[data-id="951485"] .nav-list.active {
    right: 0;
  }
  .strip[data-id="951485"] .nav-link {
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
  }
  .strip[data-id="951485"] .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .strip[data-id="951485"] .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .strip[data-id="951485"] .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .strip[data-id="951485"] .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
  }
  .strip[data-id="951485"] .nav-overlay.active {
    display: block;
  }
}.strip[data-id=d70a0b] {
  --section-id: "d70a0b";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/d70a0b";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/d70a0b";
  /* Modern overlay for better readability */
  /* Subtle animation for entrance */
}
.strip[data-id=d70a0b] .hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 120px 20px 80px 20px;
  overflow: hidden;
  color: #FFFFFF;
}
.strip[data-id=d70a0b] .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}
.strip[data-id=d70a0b] .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  z-index: 2;
  position: relative;
}
.strip[data-id=d70a0b] h1 {
  color: #FFFFFF;
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
  margin-top: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.strip[data-id=d70a0b] p {
  color: #E0E0E0;
  font-size: 22px;
  font-weight: 400;
  max-width: 850px;
  margin: 0 auto 48px auto;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.strip[data-id=d70a0b] .actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.strip[data-id=d70a0b] .cta-button {
  display: inline-block;
  background-color: #E30613;
  color: #FFFFFF;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px; /* More modern rounded pill */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(227, 6, 19, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.strip[data-id=d70a0b] .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227, 6, 19, 0.6);
  background-color: #ff0817;
}
.strip[data-id=d70a0b] .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s ease;
}
.strip[data-id=d70a0b] .scroll-indicator:hover {
  color: #FFFFFF;
}
.strip[data-id=d70a0b] .scroll-indicator svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.strip[data-id=d70a0b] .container > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}
.strip[data-id=d70a0b] .container h1 {
  animation-delay: 0.2s;
}
.strip[data-id=d70a0b] .container p {
  animation-delay: 0.4s;
}
.strip[data-id=d70a0b] .container .actions {
  animation-delay: 0.6s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .strip[data-id=d70a0b] h1 {
    font-size: 48px;
  }
  .strip[data-id=d70a0b] p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=d70a0b] .hero-section {
    min-height: 80vh;
    padding: 100px 20px 60px 20px;
  }
  .strip[data-id=d70a0b] h1 {
    font-size: 38px;
  }
  .strip[data-id=d70a0b] p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .strip[data-id=d70a0b] .cta-button {
    padding: 16px 36px;
    font-size: 16px;
  }
}.strip[data-id="6317d2"] {
  --section-id: "6317d2";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/6317d2";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/6317d2";
  /* Grid logic for 5 items: 3 in first row, 2 centered in second */
}
.strip[data-id="6317d2"] {
  background-color: #FFFFFF;
  background-image: radial-gradient(#f0f0f0 1px, transparent 1px);
  background-size: 30px 30px;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.strip[data-id="6317d2"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
}
.strip[data-id="6317d2"] .intro-flex {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 100px;
  align-items: flex-start;
}
.strip[data-id="6317d2"] .title-area {
  flex: 1;
}
.strip[data-id="6317d2"] .text-area {
  flex: 1.2;
  color: #333333;
  font-size: 19px;
  line-height: 1.7;
}
.strip[data-id="6317d2"] h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #1A1A1A;
  margin: 0;
  position: relative;
  padding-bottom: 30px;
  letter-spacing: -0.02em;
}
.strip[data-id="6317d2"] h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background-color: #E30613;
}
.strip[data-id="6317d2"] .services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.strip[data-id="6317d2"] .service-card {
  grid-column: span 2;
  background: #FFFFFF;
  padding: 45px 40px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #F0F0F0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.strip[data-id="6317d2"] .service-card:nth-child(4) {
  grid-column: 2/4;
}
.strip[data-id="6317d2"] .service-card:nth-child(5) {
  grid-column: 4/6;
}
.strip[data-id="6317d2"] .service-card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  border-color: #E30613;
}
.strip[data-id="6317d2"] .icon-box {
  width: 80px;
  height: 80px;
  background-color: #F8F8F8;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  color: #E30613;
  font-size: 32px;
  transition: all 0.3s ease;
}
.strip[data-id="6317d2"] .service-card:hover .icon-box {
  background-color: #E30613;
  color: #FFFFFF;
  transform: rotate(-5deg);
}
.strip[data-id="6317d2"] .service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
}
.strip[data-id="6317d2"] .service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}
.strip[data-id="6317d2"] .footer-note {
  margin-top: 80px;
  text-align: left;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 20px;
  border-left: 5px solid #E30613;
  padding: 10px 0 10px 30px;
  background: linear-gradient(90deg, #f9f9f9 0%, transparent 100%);
}
@media (max-width: 1100px) {
  .strip[data-id="6317d2"] .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip[data-id="6317d2"] .service-card, .strip[data-id="6317d2"] .service-card:nth-child(4), .strip[data-id="6317d2"] .service-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 991px) {
  .strip[data-id="6317d2"] .intro-flex {
    flex-direction: column;
    gap: 40px;
  }
  .strip[data-id="6317d2"] h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .strip[data-id="6317d2"] {
    padding: 80px 0;
  }
  .strip[data-id="6317d2"] .services-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id="6317d2"] .service-card {
    padding: 35px;
  }
  .strip[data-id="6317d2"] .footer-note {
    font-size: 18px;
    margin-top: 50px;
  }
}.strip[data-id=abafe8] {
  --section-id: "abafe8";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/abafe8";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/abafe8";
}
.strip[data-id=abafe8] .ads-offer-section {
  background-color: #fcfcfc;
  padding: 100px 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #2d3436;
}
.strip[data-id=abafe8] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id=abafe8] .intro {
  text-align: center;
  margin-bottom: 80px;
}
.strip[data-id=abafe8] .intro h2 {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.strip[data-id=abafe8] .intro h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #E30613;
  border-radius: 2px;
}
.strip[data-id=abafe8] .intro p {
  font-size: 1.15rem;
  color: #636e72;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.strip[data-id=abafe8] .blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.strip[data-id=abafe8] .block {
  display: flex;
  align-items: center;
  gap: 80px;
}
.strip[data-id=abafe8] .block.reverse {
  flex-direction: row-reverse;
}
.strip[data-id=abafe8] .content-side {
  flex: 1;
}
.strip[data-id=abafe8] .image-side {
  flex: 1.1;
  position: relative;
}
.strip[data-id=abafe8] .image-container {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id=abafe8] .image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.strip[data-id=abafe8] .image-container img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.strip[data-id=abafe8] .dots-pattern {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(#E30613 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.15;
  z-index: 1;
}
.strip[data-id=abafe8] .block:nth-child(odd) .dots-pattern {
  bottom: -30px;
  right: -30px;
}
.strip[data-id=abafe8] .block:nth-child(even) .dots-pattern {
  top: -30px;
  left: -30px;
}
.strip[data-id=abafe8] .item {
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}
.strip[data-id=abafe8] .item:last-child {
  margin-bottom: 0;
}
.strip[data-id=abafe8] .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: rgba(227, 6, 19, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E30613;
  font-size: 20px;
}
.strip[data-id=abafe8] .item-content strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #E30613;
  margin-bottom: 8px;
}
.strip[data-id=abafe8] .item-content p {
  font-size: 1rem;
  color: #4b4b4b;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id=abafe8] .cta-wrapper {
  margin-top: 100px;
  text-align: center;
}
.strip[data-id=abafe8] .btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background-color: #E30613;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(227, 6, 19, 0.2);
}
.strip[data-id=abafe8] .btn-primary:hover {
  background-color: #c40510;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227, 6, 19, 0.3);
}
@media (max-width: 991px) {
  .strip[data-id=abafe8] .ads-offer-section {
    padding: 60px 0;
  }
  .strip[data-id=abafe8] .block, .strip[data-id=abafe8] .block.reverse {
    flex-direction: column;
    gap: 40px;
  }
  .strip[data-id=abafe8] .image-side {
    width: 100%;
    order: -1;
  }
  .strip[data-id=abafe8] .dots-pattern {
    width: 80px;
    height: 80px;
  }
  .strip[data-id=abafe8] .blocks-wrapper {
    gap: 80px;
  }
  .strip[data-id=abafe8] .intro {
    margin-bottom: 50px;
  }
}.strip[data-id="8504be"] {
  --section-id: "8504be";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/8504be";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/8504be";
}
.strip[data-id="8504be"] {
  background-color: #ffffff;
  padding: 100px 0;
}
.strip[data-id="8504be"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="8504be"] .layout {
  display: flex;
  gap: 60px;
  align-items: stretch;
}
.strip[data-id="8504be"] .visuals {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.strip[data-id="8504be"] .specs {
  flex: 0 0 45%;
}
.strip[data-id="8504be"] .image-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.strip[data-id="8504be"] .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.strip[data-id="8504be"] .gallery-item:hover {
  transform: translateY(-5px);
}
.strip[data-id="8504be"] .gallery-item.large {
  grid-column: span 2;
}
.strip[data-id="8504be"] .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.strip[data-id="8504be"] .map-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  height: 300px;
}
.strip[data-id="8504be"] .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.strip[data-id="8504be"] .spec-box {
  background-color: #2D2D2D;
  color: #FFFFFF;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.strip[data-id="8504be"] .spec-box h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
}
.strip[data-id="8504be"] .location-info {
  color: #AAAAAA;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid #E30613;
}
.strip[data-id="8504be"] .spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.strip[data-id="8504be"] .spec-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.strip[data-id="8504be"] .spec-icon {
  flex: 0 0 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E30613;
  font-size: 18px;
}
.strip[data-id="8504be"] .spec-content {
  flex: 1;
}
.strip[data-id="8504be"] .spec-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #777777;
  margin-bottom: 4px;
  font-weight: 600;
}
.strip[data-id="8504be"] .spec-value {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}
.strip[data-id="8504be"] .traffic-number {
  display: block;
  font-size: 64px;
  font-weight: 800;
  color: #E30613;
  line-height: 1;
  margin: 5px 0;
}
.strip[data-id="8504be"] .traffic-text {
  font-size: 14px;
  color: #777777;
}
.strip[data-id="8504be"] .status-row {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.strip[data-id="8504be"] .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(227, 6, 19, 0.15);
  color: #E30613;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
}
.strip[data-id="8504be"] .pulse-dot {
  width: 12px;
  height: 12px;
  background-color: #E30613;
  border-radius: 50%;
  position: relative;
}
.strip[data-id="8504be"] .pulse-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #E30613;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.strip[data-id="8504be"] .contact-hint {
  margin-top: 15px;
  font-size: 14px;
  color: #666666;
  font-style: italic;
}
@media (max-width: 1100px) {
  .strip[data-id="8504be"] .layout {
    gap: 40px;
  }
  .strip[data-id="8504be"] .spec-box {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .strip[data-id="8504be"] .layout {
    flex-direction: column;
  }
  .strip[data-id="8504be"] .visuals, .strip[data-id="8504be"] .specs {
    flex: 0 0 100%;
    width: 100%;
  }
  .strip[data-id="8504be"] .spec-box {
    height: auto;
  }
}
@media (max-width: 576px) {
  .strip[data-id="8504be"] .image-gallery {
    grid-template-columns: 1fr;
  }
  .strip[data-id="8504be"] .gallery-item.large {
    grid-column: span 1;
  }
  .strip[data-id="8504be"] .traffic-number {
    font-size: 52px;
  }
  .strip[data-id="8504be"] .spec-box {
    padding: 30px 20px;
  }
}@charset "UTF-8";
.strip[data-id=a1c0f6] {
  --section-id: "a1c0f6";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/a1c0f6";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/a1c0f6";
  /* Dekorativní pozadí */
  /* Masonry variace */
}
.strip[data-id=a1c0f6] {
  background-color: #1a1a1a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.strip[data-id=a1c0f6]::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.strip[data-id=a1c0f6] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.strip[data-id=a1c0f6] .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id=a1c0f6] .red-accent {
  width: 60px;
  height: 4px;
  background-color: #e30613;
  margin: 0 auto 25px;
  border-radius: 2px;
}
.strip[data-id=a1c0f6] h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
}
.strip[data-id=a1c0f6] p.lead-text {
  color: #cccccc; /* Zvýšený kontrast z #A0A0A0 */
  font-size: 19px;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}
.strip[data-id=a1c0f6] .masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}
.strip[data-id=a1c0f6] .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #222;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.strip[data-id=a1c0f6] .grid-item:nth-child(2),
.strip[data-id=a1c0f6] .grid-item:nth-child(5) {
  grid-row: span 2;
}
.strip[data-id=a1c0f6] .grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(227, 6, 19, 0.3);
}
.strip[data-id=a1c0f6] .image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.strip[data-id=a1c0f6] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}
.strip[data-id=a1c0f6] .grid-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.strip[data-id=a1c0f6] .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(227, 6, 19, 0.25); /* Mírně zvýrazněno pro lepší viditelnost */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}
.strip[data-id=a1c0f6] .grid-item:hover .overlay {
  opacity: 1;
}
.strip[data-id=a1c0f6] .zoom-icon {
  color: #ffffff;
  font-size: 28px;
  background: #e30613;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.strip[data-id=a1c0f6] .grid-item:hover .zoom-icon {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .strip[data-id=a1c0f6] .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .strip[data-id=a1c0f6] h2 {
    font-size: 38px;
  }
}
@media (max-width: 640px) {
  .strip[data-id=a1c0f6] {
    padding: 80px 0;
  }
  .strip[data-id=a1c0f6] .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 20px;
  }
  .strip[data-id=a1c0f6] .grid-item:nth-child(2),
  .strip[data-id=a1c0f6] .grid-item:nth-child(5) {
    grid-row: span 1;
  }
  .strip[data-id=a1c0f6] h2 {
    font-size: 32px;
  }
  .strip[data-id=a1c0f6] p.lead-text {
    font-size: 17px;
  }
}.strip[data-id=e4d97c] {
  --section-id: "e4d97c";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/e4d97c";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/e4d97c";
}
.strip[data-id=e4d97c] .contact-minimalist {
  position: relative;
  background-color: #FFFFFF;
  padding: 120px 24px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}
.strip[data-id=e4d97c] .bg-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50vw;
  font-weight: 900;
  color: #000000;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  font-family: "Arial Black", sans-serif;
  user-select: none;
}
.strip[data-id=e4d97c] .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.strip[data-id=e4d97c] .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.strip[data-id=e4d97c] .header-group {
  max-width: 700px;
}
.strip[data-id=e4d97c] .section-title {
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.strip[data-id=e4d97c] .section-description {
  font-size: 20px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id=e4d97c] .contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.strip[data-id=e4d97c] .contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.8);
  padding: 24px 40px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id=e4d97c] .icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: rgba(227, 6, 19, 0.05);
  border-radius: 50%;
  color: #E30613;
}
.strip[data-id=e4d97c] .text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.strip[data-id=e4d97c] .company-name {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  margin: 0 0 4px 0;
  font-weight: 600;
}
.strip[data-id=e4d97c] .email-link {
  font-size: 36px;
  font-weight: 700;
  color: #E30613;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.strip[data-id=e4d97c] .email-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #E30613;
  transition: width 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.strip[data-id=e4d97c] .email-link:hover {
  color: #b3050f;
}
.strip[data-id=e4d97c] .email-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .strip[data-id=e4d97c] .contact-minimalist {
    padding: 80px 20px;
    min-height: auto;
  }
  .strip[data-id=e4d97c] .section-title {
    font-size: 36px;
  }
  .strip[data-id=e4d97c] .section-description {
    font-size: 18px;
  }
  .strip[data-id=e4d97c] .email-link {
    font-size: 24px;
  }
  .strip[data-id=e4d97c] .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    width: 100%;
    gap: 16px;
  }
  .strip[data-id=e4d97c] .text-group {
    align-items: center;
  }
  .strip[data-id=e4d97c] .bg-watermark {
    font-size: 80vw;
    opacity: 0.02;
  }
}.strip[data-id=e2af61] {
  --section-id: "e2af61";
  --storage-url: "https://preview-rubl-cz.praweb.cz/_section/e2af61";
  --public-url: "https://preview-rubl-cz.praweb.cz/_section/e2af61";
}
.strip[data-id=e2af61] {
  background-color: #1A1A1A;
  border-top: 2px solid #E30613;
  padding: 60px 0;
  font-family: "Montserrat", sans-serif;
  color: #888888;
  font-size: 13px;
  line-height: 1.6;
}
.strip[data-id=e2af61] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.strip[data-id=e2af61] .footer-logo {
  display: flex;
  align-items: center;
}
.strip[data-id=e2af61] .footer-logo img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.strip[data-id=e2af61] .footer-logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
.strip[data-id=e2af61] .footer-links-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=e2af61] .footer-links-list a {
  color: #AAAAAA;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.strip[data-id=e2af61] .footer-links-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #E30613;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.strip[data-id=e2af61] .footer-links-list a:hover {
  color: #FFFFFF;
}
.strip[data-id=e2af61] .footer-links-list a:hover::after {
  width: 100%;
}
.strip[data-id=e2af61] .footer-copyright {
  text-align: right;
  font-size: 12px;
}
.strip[data-id=e2af61] .footer-copyright p {
  margin: 0;
}
@media (max-width: 992px) {
  .strip[data-id=e2af61] .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .strip[data-id=e2af61] .footer-logo {
    justify-content: center;
  }
  .strip[data-id=e2af61] .footer-links-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .strip[data-id=e2af61] .footer-copyright {
    text-align: center;
  }
}