@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
.strip[data-id="156fd5"] {
  --section-id: "156fd5";
  --storage-url: "https://test-004.praweb.cz/_section/156fd5";
  --public-url: "https://test-004.praweb.cz/_section/156fd5";
}
.strip[data-id="156fd5"] .main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1, 0, 128, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.strip[data-id="156fd5"] .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strip[data-id="156fd5"] .logo-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.strip[data-id="156fd5"] .logo-link {
  display: inline-block;
}
.strip[data-id="156fd5"] .logo-img {
  max-width: 320px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.strip[data-id="156fd5"] .logo-img:hover {
  transform: scale(1.01);
}
.strip[data-id="156fd5"] .phone-links {
  display: flex;
  gap: 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
}
.strip[data-id="156fd5"] .phone-links a {
  color: #010080;
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.strip[data-id="156fd5"] .phone-links a i {
  font-size: 0.9rem;
  opacity: 0.8;
}
.strip[data-id="156fd5"] .phone-links a:hover {
  color: #4a90e2;
}
.strip[data-id="156fd5"] .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}
.strip[data-id="156fd5"] .nav-menu li a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #010080;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}
.strip[data-id="156fd5"] .nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #010080;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.strip[data-id="156fd5"] .nav-menu li a:hover {
  color: #010080;
}
.strip[data-id="156fd5"] .nav-menu li a:hover::after {
  width: 100%;
}
.strip[data-id="156fd5"] .mobile-top-bar {
  display: none;
  background: rgba(1, 0, 128, 0.03);
  padding: 0.5rem 1rem;
  text-align: center;
}
.strip[data-id="156fd5"] .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.strip[data-id="156fd5"] .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #010080;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.strip[data-id="156fd5"] .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.strip[data-id="156fd5"] .hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.strip[data-id="156fd5"] .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.strip[data-id="156fd5"] .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 0, 128, 0.2);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1004;
}
.strip[data-id="156fd5"] .nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .strip[data-id="156fd5"] .mobile-top-bar {
    display: block;
  }
  .strip[data-id="156fd5"] .mobile-top-bar .phone-links {
    justify-content: center;
    gap: 1.5rem;
  }
  .strip[data-id="156fd5"] .logo-group .phone-links {
    display: none;
  }
  .strip[data-id="156fd5"] .hamburger {
    display: flex;
  }
  .strip[data-id="156fd5"] .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1005;
    gap: 1rem;
  }
  .strip[data-id="156fd5"] .nav-menu.active {
    right: 0;
  }
  .strip[data-id="156fd5"] .nav-menu li {
    width: 100%;
  }
  .strip[data-id="156fd5"] .nav-menu li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(1, 0, 128, 0.05);
  }
  .strip[data-id="156fd5"] .nav-menu li a::after {
    display: none;
  }
  .strip[data-id="156fd5"] .logo-img {
    max-width: 240px;
  }
}
.strip[data-id="156fd5"] body.menu-open {
  overflow: hidden;
}@charset "UTF-8";
.strip[data-id="9dec8c"] {
  --section-id: "9dec8c";
  --storage-url: "https://test-004.praweb.cz/_section/9dec8c";
  --public-url: "https://test-004.praweb.cz/_section/9dec8c";
}
.strip[data-id="9dec8c"] section.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  min-height: 700px;
  display: flex;
  align-items: center;
}
.strip[data-id="9dec8c"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.strip[data-id="9dec8c"] .text-content {
  flex: 1.2;
  position: relative;
  animation: fadeInUp 0.8s ease-out forwards;
}
.strip[data-id="9dec8c"] .year-bg {
  position: absolute;
  top: -60px;
  left: -30px;
  font-size: 14rem;
  font-weight: 900;
  color: #e2e8f0;
  opacity: 0.4;
  z-index: -1;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  font-family: sans-serif;
}
.strip[data-id="9dec8c"] h1 {
  color: #010080;
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.strip[data-id="9dec8c"] p {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.strip[data-id="9dec8c"] ul {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}
.strip[data-id="9dec8c"] ul li {
  font-size: 1.15rem;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.strip[data-id="9dec8c"] ul li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #99b9ff;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(153, 185, 255, 0.3);
}
.strip[data-id="9dec8c"] .cta-button {
  display: inline-block;
  background-color: #010080;
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 10px 25px rgba(1, 0, 128, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="9dec8c"] .cta-button:hover {
  background-color: #000066;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(1, 0, 128, 0.35);
}
.strip[data-id="9dec8c"] .image-content {
  flex: 0.8;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}
.strip[data-id="9dec8c"] .hero-img-wrapper {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(1, 0, 128, 0.15);
  position: relative;
}
.strip[data-id="9dec8c"] .hero-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  pointer-events: none;
}
.strip[data-id="9dec8c"] .hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.strip[data-id="9dec8c"] .hero-img-wrapper:hover img {
  transform: scale(1.03);
}
.strip[data-id="9dec8c"] .waves-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 300px;
  height: 300px;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q 25 30 50 50 T 100 50' fill='none' stroke='%23010080' stroke-width='2'/%3E%3Cpath d='M0 70 Q 25 50 50 70 T 100 70' fill='none' stroke='%23010080' stroke-width='2'/%3E%3Cpath d='M0 30 Q 25 10 50 30 T 100 30' fill='none' stroke='%23010080' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .strip[data-id="9dec8c"] .container {
    gap: 40px;
  }
  .strip[data-id="9dec8c"] h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .strip[data-id="9dec8c"] section.hero-section {
    padding: 80px 0;
    min-height: auto;
  }
  .strip[data-id="9dec8c"] .container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .strip[data-id="9dec8c"] .image-content {
    order: -1;
    width: 100%;
    max-width: 550px;
  }
  .strip[data-id="9dec8c"] .text-content {
    width: 100%;
  }
  .strip[data-id="9dec8c"] h1 {
    font-size: 2.4rem;
  }
  .strip[data-id="9dec8c"] p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
  }
  .strip[data-id="9dec8c"] ul {
    display: inline-block;
    text-align: left;
  }
  .strip[data-id="9dec8c"] .year-bg {
    font-size: 10rem;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    opacity: 0.2;
  }
  .strip[data-id="9dec8c"] .waves-decoration {
    width: 200px;
    height: 200px;
    bottom: -10px;
    right: -10px;
  }
}.strip[data-id="1d50ff"] {
  --section-id: "1d50ff";
  --storage-url: "https://test-004.praweb.cz/_section/1d50ff";
  --public-url: "https://test-004.praweb.cz/_section/1d50ff";
}
.strip[data-id="1d50ff"] .about-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.strip[data-id="1d50ff"] .about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="1d50ff"] .about-header {
  margin-bottom: 50px;
  text-align: left;
}
.strip[data-id="1d50ff"] h2 {
  color: #010080;
  font-weight: 700;
  font-size: 2.6rem;
  margin: 0 0 15px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.strip[data-id="1d50ff"] .header-line {
  width: 50px;
  height: 4px;
  background-color: #99b9ff;
  border-radius: 2px;
}
.strip[data-id="1d50ff"] .about-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.strip[data-id="1d50ff"] .text-wrapper {
  flex: 1;
  border-left: 4px solid #f0f4ff;
  padding-left: 35px;
}
.strip[data-id="1d50ff"] .text-wrapper .content {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #2d3748;
}
.strip[data-id="1d50ff"] .text-wrapper .content p {
  margin-bottom: 1.5rem;
}
.strip[data-id="1d50ff"] .text-wrapper .content p:last-child {
  margin-bottom: 0;
}
.strip[data-id="1d50ff"] .image-wrapper {
  flex: 0 0 220px;
}
.strip[data-id="1d50ff"] .img-card {
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(1, 0, 128, 0.06);
  transform: rotate(2deg);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="1d50ff"] .img-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.strip[data-id="1d50ff"] .img-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.strip[data-id="1d50ff"] .img-caption {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}
.strip[data-id="1d50ff"] .section-footer {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.strip[data-id="1d50ff"] .tooth-icon {
  width: 40px;
  height: 40px;
  color: #f0f4ff;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .strip[data-id="1d50ff"] .about-section {
    padding: 60px 0;
  }
  .strip[data-id="1d50ff"] .about-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .strip[data-id="1d50ff"] .header-line {
    margin: 0 auto;
  }
  .strip[data-id="1d50ff"] h2 {
    font-size: 2.1rem;
  }
  .strip[data-id="1d50ff"] .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .strip[data-id="1d50ff"] .text-wrapper {
    border-left: none;
    border-top: 4px solid #f0f4ff;
    padding-left: 0;
    padding-top: 35px;
    text-align: center;
  }
  .strip[data-id="1d50ff"] .image-wrapper {
    order: -1;
  }
  .strip[data-id="1d50ff"] .img-card {
    transform: none;
    max-width: 280px;
  }
}@charset "UTF-8";
.strip[data-id="805a4a"] {
  --section-id: "805a4a";
  --storage-url: "https://test-004.praweb.cz/_section/805a4a";
  --public-url: "https://test-004.praweb.cz/_section/805a4a";
  /* Speciální úprava pro kartu s náhledem obrázku */
}
.strip[data-id="805a4a"] .tech-section {
  padding: 100px 0;
  background-color: #f0f4ff;
  font-family: sans-serif;
}
.strip[data-id="805a4a"] .tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="805a4a"] .tech-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.strip[data-id="805a4a"] h3 {
  color: #010080;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.strip[data-id="805a4a"] .intro-text {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.6;
}
.strip[data-id="805a4a"] .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.strip[data-id="805a4a"] .tech-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 45px;
  border: 1px solid rgba(153, 185, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.strip[data-id="805a4a"] .tech-card:hover {
  border-color: #99b9ff;
  background-color: #f8fbff;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(153, 185, 255, 0.15);
}
.strip[data-id="805a4a"] .card-icon {
  width: 56px;
  height: 56px;
  color: #99b9ff;
  transition: transform 0.4s ease;
}
.strip[data-id="805a4a"] .tech-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}
.strip[data-id="805a4a"] .card-content h4 {
  color: #010080;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.strip[data-id="805a4a"] .card-content p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id="805a4a"] .tech-card.has-thumb {
  padding-right: 120px;
}
.strip[data-id="805a4a"] .laser-thumb {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
  transition: transform 0.4s ease;
}
.strip[data-id="805a4a"] .tech-card:hover .laser-thumb {
  transform: scale(1.05);
}
.strip[data-id="805a4a"] .laser-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .strip[data-id="805a4a"] .tech-card.has-thumb {
    padding-right: 45px;
    padding-top: 100px;
  }
  .strip[data-id="805a4a"] .laser-thumb {
    top: 20px;
    left: 45px;
    right: auto;
  }
}
@media (max-width: 767px) {
  .strip[data-id="805a4a"] .tech-section {
    padding: 60px 0;
  }
  .strip[data-id="805a4a"] .tech-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id="805a4a"] h3 {
    font-size: 2rem;
  }
  .strip[data-id="805a4a"] .tech-card {
    padding: 35px;
  }
  .strip[data-id="805a4a"] .tech-card.has-thumb {
    padding-right: 35px;
    padding-top: 110px;
  }
  .strip[data-id="805a4a"] .laser-thumb {
    left: 35px;
  }
}@charset "UTF-8";
.strip[data-id="610ecb"] {
  --section-id: "610ecb";
  --storage-url: "https://test-004.praweb.cz/_section/610ecb";
  --public-url: "https://test-004.praweb.cz/_section/610ecb";
  /* Dekorativní linka pod nadpisem */
}
.strip[data-id="610ecb"] .services-section {
  padding: 100px 0;
  background-color: #fcfdfe; /* Jemný nádech pozadí pro separaci */
}
.strip[data-id="610ecb"] .services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="610ecb"] .services-header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id="610ecb"] h2 {
  color: #010080;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}
.strip[data-id="610ecb"] .services-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #99b9ff;
  margin: 0 auto;
  border-radius: 2px;
}
.strip[data-id="610ecb"] .services-header p {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 20px auto 0;
}
.strip[data-id="610ecb"] .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip[data-id="610ecb"] .service-box {
  background: #ffffff;
  border: 1px solid #f0f4ff;
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(1, 0, 128, 0.02);
}
.strip[data-id="610ecb"] .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(1, 0, 128, 0.08);
  border-color: #99b9ff;
}
.strip[data-id="610ecb"] .service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #f8faff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: background 0.3s ease;
}
.strip[data-id="610ecb"] .service-box:hover .service-icon-wrapper {
  background: #f0f4ff;
}
.strip[data-id="610ecb"] .service-icon {
  width: 40px;
  height: 40px;
  color: #99b9ff;
  transition: all 0.3s ease;
}
.strip[data-id="610ecb"] .service-box:hover .service-icon {
  color: #010080;
  transform: scale(1.1);
}
.strip[data-id="610ecb"] .service-box h3 {
  color: #010080;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}
.strip[data-id="610ecb"] .service-box p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .strip[data-id="610ecb"] .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .strip[data-id="610ecb"] .services-section {
    padding: 70px 0;
  }
  .strip[data-id="610ecb"] .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .strip[data-id="610ecb"] h2 {
    font-size: 2.1rem;
  }
  .strip[data-id="610ecb"] .service-box {
    padding: 35px 25px;
  }
}@charset "UTF-8";
.strip[data-id="4fce03"] {
  --section-id: "4fce03";
  --storage-url: "https://test-004.praweb.cz/_section/4fce03";
  --public-url: "https://test-004.praweb.cz/_section/4fce03";
  /* Dekorativní prvek na pozadí */
}
.strip[data-id="4fce03"] .contact-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.strip[data-id="4fce03"] .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(1, 0, 128, 0.08);
  background: #f0f4ff;
}
.strip[data-id="4fce03"] .contact-info {
  flex: 1.2;
  background-color: #f0f4ff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.strip[data-id="4fce03"] .contact-info::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(1, 0, 128, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.strip[data-id="4fce03"] .contact-map {
  flex: 1;
  min-height: 550px;
  position: relative;
}
.strip[data-id="4fce03"] .contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.1);
}
.strip[data-id="4fce03"] h2 {
  color: #010080;
  font-size: 2.75rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.strip[data-id="4fce03"] .contact-intro {
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 45px;
  max-width: 500px;
}
.strip[data-id="4fce03"] .info-item {
  display: flex;
  gap: 24px;
  margin-bottom: 35px;
  align-items: flex-start;
}
.strip[data-id="4fce03"] .icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #010080;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(1, 0, 128, 0.06);
  transition: transform 0.3s ease;
}
.strip[data-id="4fce03"] .info-item:hover .icon-wrapper {
  transform: translateY(-3px);
  background-color: #010080;
  color: #ffffff;
}
.strip[data-id="4fce03"] .info-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
.strip[data-id="4fce03"] .info-text {
  color: #2d3748;
  font-size: 1.1rem;
  line-height: 1.6;
}
.strip[data-id="4fce03"] .info-text strong {
  display: block;
  color: #010080;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.strip[data-id="4fce03"] .phone-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #2d3748;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.strip[data-id="4fce03"] .phone-number:hover {
  color: #010080;
  transform: translateX(5px);
}
.strip[data-id="4fce03"] .btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: #010080;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}
.strip[data-id="4fce03"] .btn-maps:hover {
  gap: 15px;
  text-decoration: underline;
}
.strip[data-id="4fce03"] .contact-footer {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(1, 0, 128, 0.1);
  color: #4a5568;
  font-style: italic;
}
@media (max-width: 1024px) {
  .strip[data-id="4fce03"] .contact-container {
    flex-direction: column;
    margin: 0 20px;
    border-radius: 24px;
  }
  .strip[data-id="4fce03"] .contact-info {
    padding: 50px 40px;
  }
  .strip[data-id="4fce03"] .contact-map {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .strip[data-id="4fce03"] .contact-section {
    padding: 60px 0;
  }
  .strip[data-id="4fce03"] h2 {
    font-size: 2.2rem;
  }
  .strip[data-id="4fce03"] .phone-number {
    font-size: 1.4rem;
  }
  .strip[data-id="4fce03"] .icon-wrapper {
    width: 48px;
    height: 48px;
  }
}.strip[data-id="71a8dc"] {
  --section-id: "71a8dc";
  --storage-url: "https://test-004.praweb.cz/_section/71a8dc";
  --public-url: "https://test-004.praweb.cz/_section/71a8dc";
}
.strip[data-id="71a8dc"] footer.main-footer {
  background-color: #010080;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(153, 185, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}
.strip[data-id="71a8dc"] .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="71a8dc"] .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
.strip[data-id="71a8dc"] .footer-col {
  flex: 1;
}
.strip[data-id="71a8dc"] .footer-col.center {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.strip[data-id="71a8dc"] .footer-col.right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.strip[data-id="71a8dc"] .footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.strip[data-id="71a8dc"] .footer-col a:hover {
  color: #99b9ff;
  border-bottom-color: rgba(153, 185, 255, 0.4);
}
.strip[data-id="71a8dc"] .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.strip[data-id="71a8dc"] .icon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.strip[data-id="71a8dc"] .social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.strip[data-id="71a8dc"] .social-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.strip[data-id="71a8dc"] .social-icon:hover {
  opacity: 1;
  color: #99b9ff;
  transform: translateY(-2px);
}
.strip[data-id="71a8dc"] .cert-icons {
  display: flex;
  gap: 25px;
  align-items: center;
}
.strip[data-id="71a8dc"] .cert-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  opacity: 0.3;
}
.strip[data-id="71a8dc"] .copyright-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .strip[data-id="71a8dc"] footer.main-footer {
    padding: 60px 0 40px 0;
  }
  .strip[data-id="71a8dc"] .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .strip[data-id="71a8dc"] .footer-col.right {
    justify-content: center;
    flex-wrap: wrap;
  }
  .strip[data-id="71a8dc"] .footer-col.center {
    order: -1;
  }
}