@import url('https://fonts.googleapis.com/css2?family=Inter: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="48ed45"] {
  --section-id: "48ed45";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/48ed45";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/48ed45";
}
.strip[data-id="48ed45"] .header-wrapper {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 35, 102, 0.08);
  font-family: "Inter", sans-serif;
  z-index: 1000;
  position: relative;
}
.strip[data-id="48ed45"] .top-bar {
  background: rgba(248, 250, 252, 0.6);
  border-bottom: 1px solid rgba(0, 35, 102, 0.05);
  padding: 8px 0;
}
.strip[data-id="48ed45"] .top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}
.strip[data-id="48ed45"] .slogan {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}
.strip[data-id="48ed45"] .main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip[data-id="48ed45"] .logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.strip[data-id="48ed45"] .logo-link:hover {
  transform: scale(1.02);
}
.strip[data-id="48ed45"] .logo-img {
  width: 170px;
  height: auto;
  display: block;
}
.strip[data-id="48ed45"] .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.strip[data-id="48ed45"] .nav-link {
  text-decoration: none;
  color: #002366;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  display: block;
}
.strip[data-id="48ed45"] .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #FFBF00;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.strip[data-id="48ed45"] .nav-link:hover {
  color: #FFBF00;
}
.strip[data-id="48ed45"] .nav-link:hover::after {
  width: 100%;
}
.strip[data-id="48ed45"] .nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.strip[data-id="48ed45"] .lang-switcher {
  display: flex;
  gap: 8px;
}
.strip[data-id="48ed45"] .lang-item {
  cursor: pointer;
  text-decoration: none;
  color: #002366;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0, 35, 102, 0.03);
}
.strip[data-id="48ed45"] .lang-item:hover {
  color: #FFBF00;
  background: rgba(0, 35, 102, 0.08);
}
.strip[data-id="48ed45"] .search-btn {
  background: rgba(0, 35, 102, 0.05);
  border: none;
  cursor: pointer;
  color: #002366;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.strip[data-id="48ed45"] .search-btn:hover {
  background: #002366;
  color: #fff;
  transform: translateY(-2px);
}
.strip[data-id="48ed45"] .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #002366;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  padding: 0;
  transition: all 0.3s;
}
.strip[data-id="48ed45"] .hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
@media (max-width: 1100px) {
  .strip[data-id="48ed45"] .nav-menu {
    gap: 15px;
  }
  .strip[data-id="48ed45"] .logo-img {
    width: 150px;
  }
}
@media (max-width: 1024px) {
  .strip[data-id="48ed45"] .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    gap: 5px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .strip[data-id="48ed45"] .nav-menu.active {
    display: flex;
  }
  .strip[data-id="48ed45"] .nav-link {
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 8px;
  }
  .strip[data-id="48ed45"] .nav-link:hover {
    background: rgba(255, 191, 0, 0.05);
  }
  .strip[data-id="48ed45"] .nav-link::after {
    display: none;
  }
  .strip[data-id="48ed45"] .hamburger {
    display: flex;
  }
  .strip[data-id="48ed45"] .top-bar {
    display: none;
  }
  .strip[data-id="48ed45"] .logo-img {
    width: 140px;
  }
  .strip[data-id="48ed45"] .lang-switcher {
    display: none;
  }
}.strip[data-id="96fca2"] {
  --section-id: "96fca2";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/96fca2";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/96fca2";
}
.strip[data-id="96fca2"] .hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.strip[data-id="96fca2"] .hero-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L90 10 L90 90 L10 90 Z' fill='none' stroke='%23e2e8f0' stroke-width='0.5'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23cbd5e1'/%3E%3Ccircle cx='90' cy='10' r='1' fill='%23cbd5e1'/%3E%3Ccircle cx='90' cy='90' r='1' fill='%23cbd5e1'/%3E%3Ccircle cx='10' cy='90' r='1' fill='%23cbd5e1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.3;
  pointer-events: none;
}
.strip[data-id="96fca2"] .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.strip[data-id="96fca2"] .slider-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}
.strip[data-id="96fca2"] .slide {
  grid-area: 1/1/2/2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  pointer-events: none;
}
.strip[data-id="96fca2"] .slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.strip[data-id="96fca2"] .slide-content {
  max-width: 550px;
}
.strip[data-id="96fca2"] .slide-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 24px 0;
}
.strip[data-id="96fca2"] .slide-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin: 0 0 40px 0;
}
.strip[data-id="96fca2"] .slide-cta {
  display: inline-block;
  background-color: #f59e0b;
  color: #ffffff;
  padding: 16px 36px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.strip[data-id="96fca2"] .slide-cta:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}
.strip[data-id="96fca2"] .slide-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.strip[data-id="96fca2"] .slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s ease;
}
.strip[data-id="96fca2"] .slide.active .slide-image img {
  animation: slideInImage 1s ease-out forwards;
}
@keyframes slideInImage {
  from {
    opacity: 0;
    transform: translateX(30px) rotateY(-5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}
.strip[data-id="96fca2"] .slider-indicators {
  display: flex;
  gap: 12px;
  margin-top: 60px;
  position: relative;
  z-index: 5;
}
.strip[data-id="96fca2"] .indicator {
  width: 48px;
  height: 6px;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  border-radius: 3px;
}
.strip[data-id="96fca2"] .indicator:hover {
  background-color: #94a3b8;
}
.strip[data-id="96fca2"] .indicator.active {
  background-color: #f59e0b;
  width: 64px;
}
@media (max-width: 1024px) {
  .strip[data-id="96fca2"] .slide-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="96fca2"] .hero-slider-section {
    padding: 40px 0;
    min-height: auto;
  }
  .strip[data-id="96fca2"] .slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .strip[data-id="96fca2"] .slide-content {
    margin: 0 auto;
    order: 1;
  }
  .strip[data-id="96fca2"] .slide-image {
    order: 2;
  }
  .strip[data-id="96fca2"] .slide-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .strip[data-id="96fca2"] .slide-text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .strip[data-id="96fca2"] .slider-indicators {
    justify-content: center;
    margin-top: 40px;
  }
}.strip[data-id="6ccb08"] {
  --section-id: "6ccb08";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/6ccb08";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/6ccb08";
  /* Vertical separators for desktop */
  /* Hover effects */
  /* Tablet responsiveness (3+2) */
  /* Mobile responsiveness (vertical list) */
}
.strip[data-id="6ccb08"] .pillars-trust {
  background-color: #FFFFFF;
  padding: 100px 0;
  width: 100%;
}
.strip[data-id="6ccb08"] .pillars-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.strip[data-id="6ccb08"] .pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: start;
}
.strip[data-id="6ccb08"] .pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 10px;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .strip[data-id="6ccb08"] .pillar-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #E0E0E0, transparent);
  }
}
.strip[data-id="6ccb08"] .pillar-icon {
  margin-bottom: 28px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.strip[data-id="6ccb08"] .pillar-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  transition: color 0.3s ease;
}
.strip[data-id="6ccb08"] .pillar-item:hover .pillar-icon {
  transform: translateY(-8px);
}
.strip[data-id="6ccb08"] .pillar-item:hover .pillar-text {
  color: #000080;
}
@media (max-width: 1024px) and (min-width: 641px) {
  .strip[data-id="6ccb08"] .pillars-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
  .strip[data-id="6ccb08"] .pillar-item {
    grid-column: span 2;
  }
  .strip[data-id="6ccb08"] .pillar-item:nth-child(4) {
    grid-column: 2/span 2;
  }
  .strip[data-id="6ccb08"] .pillar-item:nth-child(5) {
    grid-column: 4/span 2;
  }
}
@media (max-width: 640px) {
  .strip[data-id="6ccb08"] .pillars-trust {
    padding: 60px 0;
  }
  .strip[data-id="6ccb08"] .pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .strip[data-id="6ccb08"] .pillar-item {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 0;
  }
  .strip[data-id="6ccb08"] .pillar-icon {
    margin-bottom: 0;
    margin-right: 24px;
    height: auto;
  }
  .strip[data-id="6ccb08"] .pillar-icon svg {
    width: 48px;
    height: 48px;
  }
}.strip[data-id=e398fa] {
  --section-id: "e398fa";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/e398fa";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/e398fa";
}
.strip[data-id=e398fa] section {
  background-color: #f8fafc;
  padding: 100px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.strip[data-id=e398fa] .container {
  max-width: 1200px;
  margin: 0 auto;
}
.strip[data-id=e398fa] .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.strip[data-id=e398fa] .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}
.strip[data-id=e398fa] .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.strip[data-id=e398fa] .service-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 260px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.strip[data-id=e398fa] .service-card .icon-wrapper {
  margin-bottom: 24px;
  color: #2563eb;
  transition: transform 0.4s ease, color 0.4s ease;
}
.strip[data-id=e398fa] .service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  line-height: 1.5;
  transition: color 0.4s ease;
}
.strip[data-id=e398fa] .service-card .arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 20px;
  color: #f59e0b;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.strip[data-id=e398fa] .service-card:hover {
  background-color: #1e293b;
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #1e293b;
}
.strip[data-id=e398fa] .service-card:hover .icon-wrapper {
  color: #ffffff;
  transform: scale(1.1);
}
.strip[data-id=e398fa] .service-card:hover h3 {
  color: #ffffff;
}
.strip[data-id=e398fa] .service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1100px) {
  .strip[data-id=e398fa] .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .strip[data-id=e398fa] .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .strip[data-id=e398fa] section {
    padding: 60px 20px;
  }
}
@media (max-width: 500px) {
  .strip[data-id=e398fa] .services-grid {
    grid-template-columns: 1fr;
  }
  .strip[data-id=e398fa] .service-card {
    min-height: auto;
    padding: 40px 20px;
  }
  .strip[data-id=e398fa] .section-header h2 {
    font-size: 32px;
  }
}.strip[data-id="1ef644"] {
  --section-id: "1ef644";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/1ef644";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/1ef644";
  /* Correct way to use the storage URL in our SCSS environment if the variable is missing is to use the CSS variable in a way that works */
  /* Decorative element */
}
.strip[data-id="1ef644"] section {
  position: relative;
  padding: 100px 0;
  background-color: #000033;
  background-image: linear-gradient(rgba(0, 0, 51, 0.85), rgba(0, 0, 51, 0.85)), url("var(--storage-url)/newsletter-bg.jpg"); /* Fallback or direct use */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
.strip[data-id="1ef644"] section {
  background-image: linear-gradient(rgba(0, 0, 51, 0.85), rgba(0, 0, 51, 0.85)), url("/_section/1ef644/newsletter-bg.jpg"); /* Reverting to working path but optimized */
}
.strip[data-id="1ef644"] section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.1) 0%, rgba(255, 191, 0, 0) 70%);
  pointer-events: none;
}
.strip[data-id="1ef644"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.strip[data-id="1ef644"] .column-left, .strip[data-id="1ef644"] .column-right {
  flex: 1;
  min-width: 320px;
}
.strip[data-id="1ef644"] .section-tag {
  display: inline-block;
  background: rgba(255, 191, 0, 0.1);
  color: #FFBF00;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 191, 0, 0.3);
}
.strip[data-id="1ef644"] h2 {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 42px);
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.1;
}
.strip[data-id="1ef644"] .description {
  font-size: 18px;
  color: #E0E0E0;
  margin: 0 0 40px 0;
  line-height: 1.6;
  max-width: 500px;
}
.strip[data-id="1ef644"] .signup-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 500px;
  transition: border-color 0.3s ease;
}
.strip[data-id="1ef644"] .signup-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 14px 18px;
  font-size: 16px;
  outline: none;
  cursor: default;
}
.strip[data-id="1ef644"] .signup-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.strip[data-id="1ef644"] .signup-btn {
  background: linear-gradient(135deg, #FFBF00 0%, #FFA500 100%);
  color: #000033;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 191, 0, 0.3);
}
.strip[data-id="1ef644"] .signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 191, 0, 0.4);
}
.strip[data-id="1ef644"] .benefits-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}
.strip[data-id="1ef644"] .benefits-title {
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}
.strip[data-id="1ef644"] .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.strip[data-id="1ef644"] .benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #D0D0D0;
  line-height: 1.4;
}
.strip[data-id="1ef644"] .check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #FFBF00;
  background: rgba(255, 191, 0, 0.1);
  padding: 4px;
  border-radius: 6px;
}
.strip[data-id="1ef644"] .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFBF00;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid #FFBF00;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.strip[data-id="1ef644"] .cta-button:hover {
  background: #FFBF00;
  color: #000033;
  transform: translateY(-3px);
}
.strip[data-id="1ef644"] .cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.4);
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 191, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 191, 0, 0);
  }
}
@media (max-width: 992px) {
  .strip[data-id="1ef644"] .container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id="1ef644"] section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .strip[data-id="1ef644"] .container {
    flex-direction: column;
    text-align: left;
  }
  .strip[data-id="1ef644"] .column-left, .strip[data-id="1ef644"] .column-right {
    width: 100%;
  }
  .strip[data-id="1ef644"] .benefits-card {
    padding: 30px 20px;
  }
  .strip[data-id="1ef644"] h2 {
    font-size: 32px;
  }
}.strip[data-id="5b86d6"] {
  --section-id: "5b86d6";
  --storage-url: "https://preview-rehabhk-cz.praweb.cz/_section/5b86d6";
  --public-url: "https://preview-rehabhk-cz.praweb.cz/_section/5b86d6";
}
.strip[data-id="5b86d6"] footer {
  background-color: #050a14;
  border-top: 4px solid #0a1931;
  color: #CCCCCC;
  font-family: "Inter", sans-serif;
  padding: 80px 0 40px 0;
}
.strip[data-id="5b86d6"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="5b86d6"] .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.strip[data-id="5b86d6"] .footer-col h3 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.strip[data-id="5b86d6"] .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id="5b86d6"] .footer-col ul li {
  margin-bottom: 12px;
}
.strip[data-id="5b86d6"] .footer-col ul li a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.strip[data-id="5b86d6"] .footer-col ul li a:hover {
  color: #FFBF00;
  padding-left: 5px;
}
.strip[data-id="5b86d6"] .footer-bottom {
  border-top: 1px solid #1a2a44;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.strip[data-id="5b86d6"] .copyright {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
}
.strip[data-id="5b86d6"] .bottom-assets {
  display: flex;
  align-items: center;
  gap: 40px;
}
.strip[data-id="5b86d6"] .teamviewer-logo img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.strip[data-id="5b86d6"] .teamviewer-logo a:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.strip[data-id="5b86d6"] .social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.strip[data-id="5b86d6"] .social-links img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  opacity: 0.7;
}
.strip[data-id="5b86d6"] .social-links a:hover {
  transform: translateY(-3px);
}
.strip[data-id="5b86d6"] .social-links a:hover img {
  opacity: 1;
}
@media (max-width: 992px) {
  .strip[data-id="5b86d6"] .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .strip[data-id="5b86d6"] footer {
    padding: 60px 0 30px 0;
  }
  .strip[data-id="5b86d6"] .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .strip[data-id="5b86d6"] .footer-col {
    border-bottom: 1px solid #1a2a44;
  }
  .strip[data-id="5b86d6"] .footer-col h3 {
    margin-bottom: 0;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .strip[data-id="5b86d6"] .footer-col h3::after {
    content: "+";
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #FFBF00;
  }
  .strip[data-id="5b86d6"] .footer-col.active h3::after {
    transform: rotate(45deg);
  }
  .strip[data-id="5b86d6"] .footer-col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  }
  .strip[data-id="5b86d6"] .footer-col.active ul {
    max-height: 600px;
    padding: 10px 0 30px 0;
  }
  .strip[data-id="5b86d6"] .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }
  .strip[data-id="5b86d6"] .bottom-assets {
    flex-direction: column;
    gap: 25px;
  }
}