@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
.strip[data-id=a0db99] {
  --section-id: "a0db99";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/a0db99";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/a0db99";
  /* Hamburger animation */
}
.strip[data-id=a0db99] .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id=a0db99] .header.scrolled {
  background-color: rgba(15, 15, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.strip[data-id=a0db99] .header.scrolled .container {
  height: 70px;
}
.strip[data-id=a0db99] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.4s ease;
}
.strip[data-id=a0db99] .logo-link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.strip[data-id=a0db99] .logo-link:hover {
  opacity: 0.9;
}
.strip[data-id=a0db99] .logo-img {
  max-height: 65px;
  width: auto;
  display: block;
  transition: max-height 0.4s ease;
}
.strip[data-id=a0db99] .header.scrolled .logo-img {
  max-height: 55px;
}
.strip[data-id=a0db99] .nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip[data-id=a0db99] .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #F5F5F5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id=a0db99] .nav-link:hover {
  color: #FFD700;
}
.strip[data-id=a0db99] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}
.strip[data-id=a0db99] .nav-link:hover::after {
  width: 100%;
}
.strip[data-id=a0db99] .cta-container {
  display: flex;
  align-items: center;
}
.strip[data-id=a0db99] .cta-button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}
.strip[data-id=a0db99] .cta-button:hover {
  transform: translateY(-2px);
  background-color: transparent;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}
.strip[data-id=a0db99] .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.strip[data-id=a0db99] .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #F5F5F5;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
  .strip[data-id=a0db99] .nav-menu {
    gap: 20px;
  }
  .strip[data-id=a0db99] .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .strip[data-id=a0db99] {
    /* Staggered animation for menu items */
  }
  .strip[data-id=a0db99] .hamburger {
    display: flex;
  }
  .strip[data-id=a0db99] .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }
  .strip[data-id=a0db99] .nav-menu.active {
    right: 0;
  }
  .strip[data-id=a0db99] .nav-menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  .strip[data-id=a0db99] .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .strip[data-id=a0db99] .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .strip[data-id=a0db99] .nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .strip[data-id=a0db99] .nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .strip[data-id=a0db99] .nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .strip[data-id=a0db99] .nav-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .strip[data-id=a0db99] .nav-link {
    font-size: 20px;
  }
  .strip[data-id=a0db99] .cta-container {
    display: none;
  }
  .strip[data-id=a0db99] .nav-menu .mobile-cta {
    display: block;
    margin-top: 30px;
  }
}
.strip[data-id=a0db99] .mobile-cta {
  display: none;
}
.strip[data-id=a0db99] .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id=a0db99] .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.strip[data-id=a0db99] .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}.strip[data-id=e433e0] {
  --section-id: "e433e0";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/e433e0";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/e433e0";
}
.strip[data-id=e433e0] .stavebni-prace-section {
  background-color: #ffffff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id=e433e0] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.strip[data-id=e433e0] .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
}
.strip[data-id=e433e0] .section-label {
  display: inline-block;
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.strip[data-id=e433e0] .content-col h2 {
  color: #1a1a1a;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 35px;
  line-height: 1.1;
  text-transform: uppercase;
}
.strip[data-id=e433e0] .main-description {
  color: #444;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.strip[data-id=e433e0] .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.strip[data-id=e433e0] .feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.strip[data-id=e433e0] .feature-item i {
  color: #FFD700;
  font-size: 24px;
  margin-top: 5px;
}
.strip[data-id=e433e0] .feature-text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.5;
}
.strip[data-id=e433e0] .feature-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
.strip[data-id=e433e0] .highlight-quote {
  position: relative;
  padding: 40px;
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-left: 6px solid #FFD700;
  margin: 40px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
}
.strip[data-id=e433e0] .highlight-quote i.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #FFD700;
  opacity: 0.2;
}
.strip[data-id=e433e0] .highlight-text {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  font-style: italic;
}
.strip[data-id=e433e0] .image-col {
  position: sticky;
  top: 50px;
}
.strip[data-id=e433e0] .image-wrapper {
  width: 100%;
  position: relative;
}
.strip[data-id=e433e0] .image-wrapper img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  box-shadow: 30px 30px 0px #1A1A1A;
  transition: transform 0.3s ease;
}
.strip[data-id=e433e0] .image-wrapper:hover img {
  transform: translate(-10px, -10px);
}
.strip[data-id=e433e0] .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 1;
  opacity: 0.6;
}
.strip[data-id=e433e0] .triangle-top-left {
  top: 0;
  left: 0;
  border-width: 200px 200px 0 0;
  border-color: #FFD700 transparent transparent transparent;
}
.strip[data-id=e433e0] .triangle-bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent #FFD700 transparent;
}
@media (max-width: 1200px) {
  .strip[data-id=e433e0] .grid {
    gap: 40px;
  }
  .strip[data-id=e433e0] .content-col h2 {
    font-size: 38px;
  }
}
@media (max-width: 1024px) {
  .strip[data-id=e433e0] .grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id=e433e0] .image-col {
    position: static;
  }
  .strip[data-id=e433e0] .image-wrapper img {
    height: 500px;
    box-shadow: 15px 15px 0px #1A1A1A;
  }
  .strip[data-id=e433e0] .features-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .strip[data-id=e433e0] .stavebni-prace-section {
    padding: 80px 0;
  }
  .strip[data-id=e433e0] .triangle-top-left {
    border-width: 100px 100px 0 0;
  }
  .strip[data-id=e433e0] .triangle-bottom-right {
    border-width: 0 0 100px 100px;
  }
  .strip[data-id=e433e0] .content-col h2 {
    font-size: 32px;
  }
}.strip[data-id="6dc0cc"] {
  --section-id: "6dc0cc";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/6dc0cc";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/6dc0cc";
  /* Star Dust Animation Refined */
}
.strip[data-id="6dc0cc"] .hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #0f0f0f;
  background-image: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, 0.9) 30%, rgba(26, 26, 26, 0.4) 100%), url("https://preview-zzstar-cz.praweb.cz/_section/6dc0cc/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.strip[data-id="6dc0cc"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  position: relative;
  z-index: 10;
}
.strip[data-id="6dc0cc"] .content-wrapper {
  display: flex;
  align-items: stretch;
}
.strip[data-id="6dc0cc"] .vertical-line {
  width: 4px;
  background: linear-gradient(to bottom, #FFD700, #b8860b);
  margin-right: 50px;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}
.strip[data-id="6dc0cc"] .text-content {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.strip[data-id="6dc0cc"] h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 68px);
  color: #FFD700;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1.05;
  letter-spacing: -1px;
}
.strip[data-id="6dc0cc"] .subheadline {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  color: #F5F5F5;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 700px;
}
.strip[data-id="6dc0cc"] .features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.strip[data-id="6dc0cc"] .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFD700;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.strip[data-id="6dc0cc"] .feature-item:hover {
  transform: translateX(5px);
}
.strip[data-id="6dc0cc"] .feature-item i {
  font-size: 28px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}
.strip[data-id="6dc0cc"] .tradition {
  color: #cccccc;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id="6dc0cc"] .tradition::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #FFD700;
}
.strip[data-id="6dc0cc"] .cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700 0%, #daa520 100%);
  color: #000000;
  padding: 20px 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  width: fit-content;
}
.strip[data-id="6dc0cc"] .cta-button:hover {
  background: #FFFFFF;
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}
.strip[data-id="6dc0cc"] .cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}
.strip[data-id="6dc0cc"] .cta-button:hover::after {
  left: 120%;
}
.strip[data-id="6dc0cc"] .star-dust {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
  z-index: 1;
}
.strip[data-id="6dc0cc"] .star {
  position: absolute;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration) infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
@media (max-width: 992px) {
  .strip[data-id="6dc0cc"] .vertical-line {
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="6dc0cc"] .hero-section {
    text-align: center;
    padding: 80px 0;
    background-image: linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.85)), url("https://preview-zzstar-cz.praweb.cz/_section/6dc0cc/hero-bg.jpg");
  }
  .strip[data-id="6dc0cc"] .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .strip[data-id="6dc0cc"] .vertical-line {
    display: none;
  }
  .strip[data-id="6dc0cc"] .text-content {
    align-items: center;
  }
  .strip[data-id="6dc0cc"] .features {
    justify-content: center;
    gap: 20px;
  }
  .strip[data-id="6dc0cc"] .tradition {
    justify-content: center;
  }
  .strip[data-id="6dc0cc"] .tradition::before {
    display: none;
  }
}@charset "UTF-8";
.strip[data-id=b8216f] {
  --section-id: "b8216f";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/b8216f";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/b8216f";
  /* Dekorativní prvek na pozadí */
}
.strip[data-id=b8216f] .parking-section {
  background-color: #F5F5F5;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=b8216f] .parking-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(245, 245, 245, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.strip[data-id=b8216f] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id=b8216f] .layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
.strip[data-id=b8216f] .content-block {
  flex: 1;
}
.strip[data-id=b8216f] .image-block {
  flex: 0 0 40%;
}
.strip[data-id=b8216f] h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.strip[data-id=b8216f] .gold-line {
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin-bottom: 35px;
  border-radius: 2px;
}
.strip[data-id=b8216f] .description {
  margin-bottom: 45px;
}
.strip[data-id=b8216f] .description-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
}
.strip[data-id=b8216f] .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.strip[data-id=b8216f] .benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strip[data-id=b8216f] .benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}
.strip[data-id=b8216f] .benefit i {
  font-size: 28px;
  color: #FFD700;
}
.strip[data-id=b8216f] .benefit span {
  font-weight: 700;
  font-size: 15px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.strip[data-id=b8216f] .image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(255, 215, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.strip[data-id=b8216f] .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-fit: cover;
}
.strip[data-id=b8216f] .image-wrapper:hover img {
  transform: scale(1.05);
}
@media (max-width: 1100px) {
  .strip[data-id=b8216f] .layout {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .strip[data-id=b8216f] .parking-section {
    padding: 70px 0;
  }
  .strip[data-id=b8216f] .layout {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .strip[data-id=b8216f] .content-block, .strip[data-id=b8216f] .image-block {
    width: 100%;
  }
  .strip[data-id=b8216f] h2 {
    font-size: 34px;
    text-align: center;
  }
  .strip[data-id=b8216f] .gold-line {
    margin: 0 auto 30px;
  }
  .strip[data-id=b8216f] .description-text {
    text-align: center;
    font-size: 17px;
  }
  .strip[data-id=b8216f] .image-block {
    max-width: 600px;
    margin: 0 auto;
  }
  .strip[data-id=b8216f] .benefits-grid {
    justify-content: center;
  }
  .strip[data-id=b8216f] .benefit {
    align-items: center;
    text-align: center;
  }
}.strip[data-id=fc2a3d] {
  --section-id: "fc2a3d";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/fc2a3d";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/fc2a3d";
}
.strip[data-id=fc2a3d] .about-company {
  background-color: #F5F5F5;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id=fc2a3d] .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(150px, 30vw, 400px);
  font-weight: 900;
  color: #FFD700;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.strip[data-id=fc2a3d] .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.strip[data-id=fc2a3d] h2 {
  color: #1a1a1a;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}
.strip[data-id=fc2a3d] .service-pillars {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.strip[data-id=fc2a3d] .pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: transform 0.3s ease;
}
.strip[data-id=fc2a3d] .pillar:hover {
  transform: translateY(-5px);
}
.strip[data-id=fc2a3d] .pillar i {
  font-size: 2rem;
  color: #FFD700;
  background: #1a1a1a;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.strip[data-id=fc2a3d] .pillar span {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.strip[data-id=fc2a3d] .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.strip[data-id=fc2a3d] p {
  color: #333333;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  text-align: justify;
}
.strip[data-id=fc2a3d] .intro-text p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 30px;
}
.strip[data-id=fc2a3d] .image-break {
  margin: 40px 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}
.strip[data-id=fc2a3d] .image-break:hover {
  transform: scale(1.01);
}
.strip[data-id=fc2a3d] .image-break img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.strip[data-id=fc2a3d] .construction-highlight {
  border-left: 6px solid #FFD700;
  padding-left: 35px;
  margin-top: 20px;
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}
.strip[data-id=fc2a3d] .construction-highlight:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  background: #fffdf0;
}
@media (max-width: 1024px) {
  .strip[data-id=fc2a3d] h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .strip[data-id=fc2a3d] .about-company {
    padding: 60px 0;
  }
  .strip[data-id=fc2a3d] p {
    text-align: left;
    font-size: 1rem;
  }
  .strip[data-id=fc2a3d] .intro-text p {
    font-size: 1.15rem;
  }
  .strip[data-id=fc2a3d] h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .strip[data-id=fc2a3d] .service-pillars {
    gap: 20px;
  }
  .strip[data-id=fc2a3d] .watermark {
    font-size: 100px;
  }
  .strip[data-id=fc2a3d] .construction-highlight {
    padding-left: 20px;
    padding-right: 20px;
  }
  .strip[data-id=fc2a3d] .image-break {
    margin: 30px 0;
  }
}.strip[data-id=e6d80a] {
  --section-id: "e6d80a";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/e6d80a";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/e6d80a";
}
.strip[data-id=e6d80a] .security-section {
  background-color: #1A1A1A;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 40%), radial-gradient(#333333 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  color: #F5F5F5;
  overflow: hidden;
}
.strip[data-id=e6d80a] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
}
.strip[data-id=e6d80a] .image-column {
  flex: 1;
  position: relative;
  z-index: 1;
}
.strip[data-id=e6d80a] .image-column::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.strip[data-id=e6d80a] .image-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.strip[data-id=e6d80a] .image-column:hover img {
  transform: scale(1.03);
}
.strip[data-id=e6d80a] .content-column {
  flex: 1;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s ease, background-color 0.4s ease, transform 0.4s ease;
  border-radius: 16px;
  backdrop-filter: blur(5px);
}
.strip[data-id=e6d80a] .content-column:hover {
  border-color: #FFD700;
  background-color: rgba(255, 215, 0, 0.04);
  transform: translateY(-5px);
}
.strip[data-id=e6d80a] h2 {
  color: #FFD700;
  font-size: 46px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.strip[data-id=e6d80a] p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(245, 245, 245, 0.9);
}
.strip[data-id=e6d80a] ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=e6d80a] li {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.strip[data-id=e6d80a] li:last-child {
  margin-bottom: 0;
}
.strip[data-id=e6d80a] .shield-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #FFD700;
  filter: drop-shadow(0 0 5px rgba(255, 214, 0, 0.3));
}
@media (max-width: 1100px) {
  .strip[data-id=e6d80a] .container {
    gap: 40px;
  }
  .strip[data-id=e6d80a] h2 {
    font-size: 38px;
  }
}
@media (max-width: 992px) {
  .strip[data-id=e6d80a] .security-section {
    padding: 80px 0;
  }
  .strip[data-id=e6d80a] .container {
    flex-direction: column;
    gap: 50px;
  }
  .strip[data-id=e6d80a] .image-column, .strip[data-id=e6d80a] .content-column {
    width: 100%;
    max-width: 600px;
  }
  .strip[data-id=e6d80a] .image-column img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 576px) {
  .strip[data-id=e6d80a] .security-section {
    padding: 60px 0;
  }
  .strip[data-id=e6d80a] .content-column {
    padding: 30px 20px;
  }
  .strip[data-id=e6d80a] h2 {
    font-size: 32px;
  }
  .strip[data-id=e6d80a] p {
    font-size: 16px;
  }
}.strip[data-id="171a16"] {
  --section-id: "171a16";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/171a16";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/171a16";
}
.strip[data-id="171a16"] .services-section {
  padding: 100px 20px;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  color: #1a1a1a;
  overflow: hidden;
  position: relative;
}
.strip[data-id="171a16"] .services-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}
.strip[data-id="171a16"] .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.strip[data-id="171a16"] .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.strip[data-id="171a16"] .intro-image-wrapper {
  position: relative;
}
.strip[data-id="171a16"] .intro-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
  display: block;
}
.strip[data-id="171a16"] .intro-image-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid #FFD700;
  border-radius: 12px;
  z-index: -1;
}
.strip[data-id="171a16"] .intro-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}
.strip[data-id="171a16"] .intro-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
}
.strip[data-id="171a16"] .intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
}
.strip[data-id="171a16"] .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.strip[data-id="171a16"] .service-card {
  background: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 50px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strip[data-id="171a16"] .service-card:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}
.strip[data-id="171a16"] .service-card .icon {
  margin-bottom: 25px;
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.strip[data-id="171a16"] .service-card:hover .icon {
  background: rgba(26, 26, 26, 0.1);
}
.strip[data-id="171a16"] .service-card .icon svg {
  width: 35px;
  height: 35px;
  fill: #FFD700;
  transition: fill 0.3s ease;
}
.strip[data-id="171a16"] .service-card:hover .icon svg {
  fill: #1a1a1a;
}
.strip[data-id="171a16"] .service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.strip[data-id="171a16"] .service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
  transition: color 0.3s ease;
}
.strip[data-id="171a16"] .service-card:hover h3,
.strip[data-id="171a16"] .service-card:hover p {
  color: #1a1a1a;
}
@media (max-width: 1024px) {
  .strip[data-id="171a16"] .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id="171a16"] .intro-text {
    order: 2;
  }
  .strip[data-id="171a16"] .intro-image-wrapper {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  .strip[data-id="171a16"] .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .strip[data-id="171a16"] .services-section {
    padding: 60px 15px;
  }
  .strip[data-id="171a16"] .intro-text h2 {
    font-size: 32px;
  }
  .strip[data-id="171a16"] .services-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id="171a16"] .service-card {
    padding: 40px 20px;
  }
}.strip[data-id=c1753d] {
  --section-id: "c1753d";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/c1753d";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/c1753d";
}
.strip[data-id=c1753d] .contact-section {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id=c1753d] .contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0.3;
}
.strip[data-id=c1753d] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.strip[data-id=c1753d] .contact-info {
  display: flex;
  flex-direction: column;
}
.strip[data-id=c1753d] .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 15px;
}
.strip[data-id=c1753d] .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
}
.strip[data-id=c1753d] .contact-group {
  display: grid;
  gap: 30px;
}
.strip[data-id=c1753d] .contact-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #FFD700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id=c1753d] .contact-card:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateX(10px);
}
.strip[data-id=c1753d] .person-name {
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 5px;
  display: block;
}
.strip[data-id=c1753d] .person-role {
  font-size: 14px;
  color: #BBBBBB;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.strip[data-id=c1753d] .contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.strip[data-id=c1753d] .contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.strip[data-id=c1753d] .contact-link i {
  color: #FFD700;
  width: 20px;
  text-align: center;
  font-size: 18px;
}
.strip[data-id=c1753d] .contact-link:hover {
  color: #FFD700;
}
.strip[data-id=c1753d] .company-details {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 20px;
}
.strip[data-id=c1753d] .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
  line-height: 1.6;
}
.strip[data-id=c1753d] .detail-item i {
  color: #FFD700;
  margin-top: 4px;
  font-size: 18px;
}
.strip[data-id=c1753d] .detail-content {
  display: flex;
  flex-direction: column;
}
.strip[data-id=c1753d] .detail-label {
  color: #FFD700;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.strip[data-id=c1753d] .id-vat-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.strip[data-id=c1753d] .map-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.strip[data-id=c1753d] .map-container {
  width: 100%;
  height: 400px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  overflow: hidden;
  filter: grayscale(1) contrast(1.2) invert(0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: filter 0.5s ease;
}
.strip[data-id=c1753d] .map-container:hover {
  filter: grayscale(0.5) contrast(1.1) invert(0.85);
}
.strip[data-id=c1753d] .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.strip[data-id=c1753d] .asset-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.strip[data-id=c1753d] .asset-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.strip[data-id=c1753d] .asset-image-wrapper:hover img {
  transform: scale(1.03);
}
.strip[data-id=c1753d] .asset-caption {
  font-size: 13px;
  color: #888888;
  margin-top: 10px;
  text-align: right;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.strip[data-id=c1753d] .asset-caption i {
  color: #FFD700;
}
@media (max-width: 992px) {
  .strip[data-id=c1753d] .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .strip[data-id=c1753d] .contact-section {
    padding: 60px 0;
  }
  .strip[data-id=c1753d] .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .strip[data-id=c1753d] .id-vat-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .strip[data-id=c1753d] .contact-card:hover {
    transform: none;
  }
}.strip[data-id="5c5b68"] {
  --section-id: "5c5b68";
  --storage-url: "https://preview-zzstar-cz.praweb.cz/_section/5c5b68";
  --public-url: "https://preview-zzstar-cz.praweb.cz/_section/5c5b68";
}
.strip[data-id="5c5b68"] .footer-section {
  background-color: #1A1A1A;
  border-top: 1px solid #FFD700;
  padding: 60px 0 40px 0;
  color: #F5F5F5;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.strip[data-id="5c5b68"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="5c5b68"] .footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.strip[data-id="5c5b68"] .footer-column {
  flex: 1;
}
.strip[data-id="5c5b68"] .footer-column.copyright {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.strip[data-id="5c5b68"] .footer-column.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strip[data-id="5c5b68"] .footer-column.links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.strip[data-id="5c5b68"] .footer-column.assets {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.strip[data-id="5c5b68"] .footer-column a {
  color: #F5F5F5;
  text-decoration: none;
  transition: color 0.3s ease;
}
.strip[data-id="5c5b68"] .footer-column a:hover {
  color: #FFD700;
}
.strip[data-id="5c5b68"] .cookie-link {
  font-size: 12px;
  opacity: 0.8;
}
.strip[data-id="5c5b68"] .social-icons, .strip[data-id="5c5b68"] .certifications {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.strip[data-id="5c5b68"] .social-icons a, .strip[data-id="5c5b68"] .certifications i {
  font-size: 20px;
  color: #F5F5F5;
  transition: transform 0.3s ease, color 0.3s ease;
}
.strip[data-id="5c5b68"] .social-icons a:hover {
  transform: translateY(-3px);
  color: #FFD700;
}
.strip[data-id="5c5b68"] .certifications i {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .strip[data-id="5c5b68"] .footer-section {
    padding: 50px 0;
  }
  .strip[data-id="5c5b68"] .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
  .strip[data-id="5c5b68"] .footer-column.assets {
    align-items: center;
  }
  .strip[data-id="5c5b68"] .social-icons, .strip[data-id="5c5b68"] .certifications {
    justify-content: center;
  }
  .strip[data-id="5c5b68"] .footer-column.links nav {
    gap: 20px;
  }
}