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

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}.strip[data-id=eed960] {
  --section-id: "eed960";
  --storage-url: "https://test-60scichl.praweb.cz/_section/eed960";
  --public-url: "https://test-60scichl.praweb.cz/_section/eed960";
  /* Scrolled state handled by JS */
  /* Mobile Toggle */
  /* Mobile Menu */
  /* Hamburger Animation */
}
.strip[data-id=eed960] .header-section {
  width: 100%;
  background-color: hsla(210, 29%, 14%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 25px 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.strip[data-id=eed960] .header-section.scrolled {
  padding: 12px 0;
  background-color: hsla(210, 29%, 10%, 0.95);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.strip[data-id=eed960] .header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip[data-id=eed960] .logo-zone {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.strip[data-id=eed960] .logo-zone:hover {
  transform: scale(1.02);
}
.strip[data-id=eed960] .logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip[data-id=eed960] .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.strip[data-id=eed960] .logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.5px;
}
.strip[data-id=eed960] .nav-zone {
  display: block;
}
.strip[data-id=eed960] .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.strip[data-id=eed960] .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id=eed960] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: hsl(33, 100%, 50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id=eed960] .nav-link:hover {
  color: #ffffff;
}
.strip[data-id=eed960] .nav-link:hover::after,
.strip[data-id=eed960] .nav-link.active::after {
  width: 100%;
}
.strip[data-id=eed960] .nav-link.active {
  color: hsl(33, 100%, 50%);
}
.strip[data-id=eed960] .cta-zone {
  display: flex;
  align-items: center;
  gap: 30px;
}
.strip[data-id=eed960] .phone-link {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strip[data-id=eed960] .phone-link:hover {
  color: hsl(33, 100%, 50%);
}
.strip[data-id=eed960] .cta-button {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: hsl(33, 100%, 50%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px hsla(33, 100%, 50%, 0.3);
  border: none;
  cursor: pointer;
}
.strip[data-id=eed960] .cta-button:hover {
  background-color: hsl(33, 100%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(33, 100%, 50%, 0.4);
}
.strip[data-id=eed960] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.strip[data-id=eed960] .mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.strip[data-id=eed960] .mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: hsl(210, 29%, 8%);
  z-index: 1000;
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.strip[data-id=eed960] .mobile-menu-overlay.active {
  right: 0;
}
.strip[data-id=eed960] .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}
.strip[data-id=eed960] .mobile-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 20px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}
.strip[data-id=eed960] .mobile-nav-link:hover {
  color: hsl(33, 100%, 50%);
}
.strip[data-id=eed960] .mobile-cta-wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}
.strip[data-id=eed960] .phone-link-mobile {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}
.strip[data-id=eed960] .cta-button-mobile {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  background-color: hsl(33, 100%, 50%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 1100px) {
  .strip[data-id=eed960] .nav-list {
    gap: 20px;
  }
  .strip[data-id=eed960] .cta-zone {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .strip[data-id=eed960] .nav-zone {
    display: none;
  }
  .strip[data-id=eed960] .phone-link {
    display: none;
  }
  .strip[data-id=eed960] .mobile-toggle {
    display: flex;
  }
  .strip[data-id=eed960] .header-section {
    padding: 18px 0;
  }
  .strip[data-id=eed960] .header-section.scrolled {
    padding: 12px 0;
  }
}
@media (max-width: 480px) {
  .strip[data-id=eed960] .logo-text {
    font-size: 19px;
  }
  .strip[data-id=eed960] .cta-button {
    display: none;
  }
}
.strip[data-id=eed960] .mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id=eed960] .mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.strip[data-id=eed960] .mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}.strip[data-id="85d29a"] {
  --section-id: "85d29a";
  --storage-url: "https://test-60scichl.praweb.cz/_section/85d29a";
  --public-url: "https://test-60scichl.praweb.cz/_section/85d29a";
}
.strip[data-id="85d29a"] .pricing-section {
  font-family: "Montserrat", sans-serif;
  padding: 80px 20px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  color: #333;
}
.strip[data-id="85d29a"] .pricing-section .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center right;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}
.strip[data-id="85d29a"] .pricing-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.strip[data-id="85d29a"] .pricing-section .header {
  margin-bottom: 60px;
  text-align: left;
}
.strip[data-id="85d29a"] .pricing-section .header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}
.strip[data-id="85d29a"] .pricing-section .header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  line-height: 1.6;
}
.strip[data-id="85d29a"] .pricing-section .pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.strip[data-id="85d29a"] .pricing-section .pricing-category h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}
.strip[data-id="85d29a"] .pricing-section .pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.strip[data-id="85d29a"] .pricing-section .pricing-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}
.strip[data-id="85d29a"] .pricing-section .pricing-table .row:nth-child(even) {
  background-color: hsl(210, 20%, 96%);
}
.strip[data-id="85d29a"] .pricing-section .pricing-table .row:hover {
  border-left-color: #ff6600;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.strip[data-id="85d29a"] .pricing-section .pricing-table .row .service-name {
  font-weight: 400;
  font-size: 16px;
}
.strip[data-id="85d29a"] .pricing-section .pricing-table .row .price {
  font-weight: 700;
  font-size: 18px;
  color: #ff6600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .strip[data-id="85d29a"] .pricing-section {
    padding: 60px 20px;
  }
  .strip[data-id="85d29a"] .pricing-section .header h2 {
    font-size: 32px;
  }
  .strip[data-id="85d29a"] .pricing-section .bg-image {
    width: 100%;
    opacity: 0.05;
  }
  .strip[data-id="85d29a"] .pricing-section .pricing-table .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .strip[data-id="85d29a"] .pricing-section .pricing-table .row .price {
    font-size: 16px;
  }
}.strip[data-id="942727"] {
  --section-id: "942727";
  --storage-url: "https://test-60scichl.praweb.cz/_section/942727";
  --public-url: "https://test-60scichl.praweb.cz/_section/942727";
}
.strip[data-id="942727"] .footer {
  background-color: #1a1d21;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
  border-top: 4px solid #ff8c00;
  padding: 80px 0 40px 0;
  color: #a0a6ad;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id="942727"] .footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.3), transparent);
}
.strip[data-id="942727"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.strip[data-id="942727"] .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.strip[data-id="942727"] .footer-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ff8c00;
  margin-bottom: 30px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id="942727"] .footer-title::after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background: rgba(255, 140, 0, 0.2);
}
.strip[data-id="942727"] .footer-text p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.strip[data-id="942727"] .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="942727"] .footer-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.strip[data-id="942727"] .footer-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #ff8c00;
}
.strip[data-id="942727"] .contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.strip[data-id="942727"] .contact-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}
.strip[data-id="942727"] .social-links {
  display: flex;
  gap: 12px;
}
.strip[data-id="942727"] .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="942727"] .social-icon:hover {
  background: #ff8c00;
  border-color: #ff8c00;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}
.strip[data-id="942727"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip[data-id="942727"] .footer-bottom p {
  font-size: 13px;
  margin: 0;
  opacity: 0.6;
}
.strip[data-id="942727"] .back-to-top {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.strip[data-id="942727"] .back-to-top:hover {
  background: #ff8c00;
  border-color: #ff8c00;
}
@media (max-width: 1024px) {
  .strip[data-id="942727"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .strip[data-id="942727"] .footer {
    padding: 60px 0 30px 0;
  }
  .strip[data-id="942727"] .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .strip[data-id="942727"] .footer-title::after {
    display: none;
  }
  .strip[data-id="942727"] .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}