@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
    
    .hron-funnel-container {
      
      border-radius: 16px;
      
      margin: 20px auto;
      width: fit-content;
      max-width: 98%;
      position: relative;
      z-index: 10;
    }
    
    .hron-responsive-funnel {
      width: 1500px !important;
      height: auto !important;
      max-width: 100%;
      display: block;
      
      transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
      transform: scale(0.85);
      position: relative;
      z-index: 1;
    }
    
    .hron-mobile-funnel {
      display: none;
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    .hron-desktop-funnel {
      display: block !important;
      opacity: 1;
      transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    .hron-funnel-container {
      transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    @media (max-width: 768px) {
      .hron-desktop-funnel {
        display: none !important;
        opacity: 0;
      }
      .hron-mobile-funnel {
        display: block !important;
        opacity: 1 !important;
        transform: rotate(90deg) scale(1.05);
        transform-origin: center center;
        width: 100vh;
        height: 100vw;
      }
      .hron-mobile-funnel .hron-funnel-image > div:first-child {
        transform: rotate(-90deg) !important;
        transform-origin: center center;
      }
      .hron-mobile-funnel .hron-funnel-image > div:first-child:hover {
        transform: rotate(-90deg) scale(1.15) !important;
        transform-origin: center center;
      }

      .hron-responsive-funnel {
        width: 100vh !important;
        height: 100vw !important;
        max-width: none !important;
        max-height: none !important;
      }
      .hron-funnel-container {
        padding: 0;
        margin: 0;
        width: 100vw;
        border-radius: 0;
        box-shadow: none;
        background: white;
        display: flex;
        align-items: center;
        overflow: hidden;
        scale: 2;
        margin-bottom: 166px !important; 
      }
      
      .hron-mobile-funnel .hron-title-text {
        font-size: 24px;
        text-align: center !important;
      }
      .hron-mobile-funnel .hron-title-text.hron-active {
        font-size: 26px;
        margin-top: -4px !important;
      }
      
       .hron-mobile-funnel .hron-funnel-image > div:first-child {
         width: 140px !important;
         height: 140px !important;
         margin: 25px !important;
       }
       
       .hron-mobile-funnel .hron-funnel-image svg {
         width: 140px !important;
         height: 140px !important;
       }
       
       .hron-mobile-funnel .hron-funnel-image div[style*="width: 130px"] {
         width: 120px !important;
         height: 120px !important;
       }

       @media (max-width: 480px) {
         .hron-mobile-funnel {
           transform: rotate(90deg) scale(0.95);
         }
        
                 .hron-mobile-funnel .hron-funnel-image > div:first-child {
           width: 125px !important;
           height: 125px !important;
           margin: 20px !important;
         }
         
         .hron-mobile-funnel .hron-funnel-image svg {
           width: 125px !important;
           height: 125px !important;
         }
         
         .hron-mobile-funnel .hron-funnel-image div[style*="width: 130px"] {
           width: 105px !important;
           height: 105px !important;
         }
        
                 .hron-mobile-funnel foreignObject div[style*="font-size: 20px"] {
           font-size: 18px !important;
         }
         
         .hron-mobile-funnel foreignObject div[style*="font-size: 22px"] {
           font-size: 20px;
         }
         
         .hron-mobile-funnel .hron-title-text {
           font-size: 22px;
         }
         
         .hron-mobile-funnel .hron-title-text.hron-active {
           font-size: 24px;
         }
      }
      
             
       @media (max-width: 768px) and (orientation: landscape) {
         .hron-mobile-funnel {
           transform: rotate(90deg) scale(1.1);
         }
      }
      
      .hron-mobile-funnel .hron-funnel-image.hron-first-element-pulse > .hron-funnel-image-inner {
        animation: hronFirstElementPulseMobile 2s ease-in-out infinite;
        transform-origin: center center;
        border-radius: 50%;
      }
      @keyframes hronFirstElementPulseMobile {
        0% {
          transform: rotate(-90deg) scale(1);
          box-shadow: 0 4px 20px rgba(71, 118, 255, 0.3);
        }
        50% {
          transform: rotate(-90deg) scale(1.15);
          box-shadow: 0 8px 35px rgba(71, 118, 255, 0.5);
        }
        100% {
          transform: rotate(-90deg) scale(1);
          box-shadow: 0 4px 20px rgba(71, 118, 255, 0.3);
        }
      }
      
    }
  
    
    .hron-funnel-section {
      transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
      cursor: pointer;
    }
    
    
    .hron-funnel-image img {
      transition: filter 0.3s ease;
    }
    
    .hron-funnel-image svg path {
      transition: stroke 0.3s ease;
    }
    
    .hron-funnel-image div[style*="position: relative"] {
      transition: filter 0.3s ease;
    }
    

    
    
    @keyframes hronFirstElementPulse {
      0% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(71, 118, 255, 0.3);
      }
      50% { 
        transform: scale(1.15);
        box-shadow: 0 8px 35px rgba(71, 118, 255, 0.5);
      }
      100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(71, 118, 255, 0.3);
      }
    }
    
    .hron-first-element-pulse .hron-funnel-image-inner {
      animation: hronFirstElementPulse 2s ease-in-out infinite;
      transform-origin: center center;
      border-radius: 50%;
    }
    
    .hron-first-element-pulse.hron-animation-stopped .hron-funnel-image-inner {
      animation: none !important;
      box-shadow: none;
    }
    
    
    .hron-title-section {
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .hron-title-section:hover {
      opacity: 0.8;
    }
    
    .hron-title-text {
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      z-index: 1001;
    }
    
    .hron-title-text.hron-active {
      color: white !important;
      z-index: 1002;
      font-size: 31px !important;
      margin-top: 1px !important;
    }
    
    
    
    
    .hron-bottom-border {
      transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    
    .hron-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
      backdrop-filter: blur(5px);
    }
    
    .hron-modal-overlay.hron-active {
      opacity: 1;
      visibility: visible;
    }
    
.hron-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 850px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  font-family: 'Roboto', sans-serif;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  min-width: 0;
}
    
    .hron-modal-overlay.hron-active .hron-modal-content {
      transform: scale(1) translateY(0);
    }
    
    .hron-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border: none;
      background: #f0f0f0;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #666;
      transition: all 0.3s ease;
      z-index: 10001;
    }
    
    .hron-modal-close:hover {
      background: #e0e0e0;
      color: #333;
      transform: scale(1.1);
    }
    
.hron-modal-left {
  flex: 0 0 450px;
  min-width: 0;
}
    
    .hron-modal-right {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding-top: 20px;
      min-width: 250px;
      margin-top: 20px; 
    }
    
    .hron-modal-image-container {
      position: relative;
      width: 280px;
      height: 280px;
      transition: all 0.3s ease;
      background: #f8f9fa;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hron-modal-image-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6c757d;
      font-size: 48px;
      font-weight: 300;
    }
    
    .hron-modal-vertical-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .hron-modal-header {
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 2px solid #f0f0f0;
      margin-top: -15px; 
    }
    
    .hron-modal-title {
      font-size: 28px;
      font-weight: 700;
      color: #333;
      margin: 0;
      line-height: 1.3;
    }
    
    .hron-modal-subtitle {
      font-size: 16px;
      color: #666;
      margin: 8px 0 0 0;
      font-weight: 400;
    }
    
.hron-modal-body {
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow-x: auto;
  min-width: 0;
}
    
.hron-modal-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  overflow-x: auto;
  min-width: 0;
}
    
    .hron-modal-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .hron-modal-features li {
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 15px;
      color: #666;
      position: relative;
      padding-left: 25px;
    }
    
    .hron-modal-features li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #4776ff;
      font-weight: bold;
    }
    
    .hron-modal-features li:last-child {
      border-bottom: none;
    }
    
    
    .hron-modal-actions {
      margin-top: 30px;
    }
    
    .hron-modal-cta-btn {
      background: linear-gradient(135deg, #4776ff 0%, #2A5EF6 100%);
      color: white;
      border: none;
      padding: 16px 32px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      font-family: 'Roboto', sans-serif;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(71, 118, 255, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .hron-modal-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(71, 118, 255, 0.4);
    }
    
    .hron-modal-cta-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 15px rgba(71, 118, 255, 0.3);
    }
    
    .hron-modal-cta-btn i {
      transition: transform 0.3s ease;
      margin-right: 8px;
    }
    
    .hron-modal-cta-btn:hover i {
      transform: translateX(3px);
    }
    
    .hron-modal-cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s ease;
    }
    
    .hron-modal-cta-btn:hover::before {
      left: 100%;
    }
    
    
    @media (max-width: 768px) {
      .hron-funnel-container .hron-modal-content {
        padding: 30px 20px;
        max-width: 95%;
        border-radius: 16px;
        flex-direction: column;
        gap: 0;
      }
      
      .hron-funnel-container .hron-modal-left {
        flex: 1;
        width: 100%;
      }

      .hron-modal-left {
        flex: 0 0 330px !important;
        width: 100%;
      }
      
      .hron-funnel-container .hron-modal-right {
        display: none;
      }
    }
    
    @media (max-width: 1024px) {
      .hron-funnel-container .hron-modal-left {
        flex: 0 0 350px;
      }
      
      .hron-funnel-container .hron-modal-right {
        min-width: 200px;
      }
      
      .hron-funnel-container .hron-modal-image-container {
        width: 160px;
        height: 224px;
      }
    }
    
    @media (max-width: 480px) {
      .hron-funnel-container .hron-modal-content {
        padding: 25px 15px;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 12px;
      }
      
      .hron-funnel-container .hron-modal-title {
        font-size: 22px;
      }
      
      .hron-funnel-container .hron-modal-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
      }
      
      .hron-funnel-container .hron-modal-actions {
        margin-top: 20px;
      }
    }

    .hron-title-section .hron-title-text.hron-active {
      color: white !important;
      font-size: 31px !important;
      margin-top: 1px !important;
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    @media (max-width: 768px) {
      .hron-funnel-container .hron-title-section .hron-title-text.hron-active {
        color: white !important;
        font-size: 33px !important;
        margin-top: 5px !important;
      }
    }

.hron-funnel-container .hron-modal-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #2A5EF6 !important;
  color: #fff !important;
  border-radius: 8px !important;
  border: none !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 18px !important;
  padding: 12px 32px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hron-funnel-container .hron-modal-cta-btn:hover,
.hron-funnel-container .hron-modal-cta-btn:focus {
  background: #022D82 !important;
  color: #e0e0e0 !important;
  text-decoration: none !important;
}

.hron-funnel-container .hron-modal-close {
  background: transparent !important;
  color: #333 !important;
  border: none !important;
  font-size: 32px !important;
  font-weight: bold !important;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 100;
  text-decoration: none !important;
  line-height: 1;
  padding: 0 8px;
  transition: color 0.2s;
  display: inline-block;
}
.hron-funnel-container .hron-modal-close:hover,
.hron-funnel-container .hron-modal-close:focus {
  color: #2A5EF6 !important;
  background: #f3f5fe !important;
  border-radius: 50%;
  text-decoration: none !important;
}

.hron-funnel-container .hron-modal-image-container {
  width: 160px;
  height: 224px;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hron-funnel-container .hron-modal-image-container img,
.hron-funnel-container .hron-modal-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hron-funnel-container .hron-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}

.hron-funnel-container .hron-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 96vw;
  width: 100%;
  max-height: 96vh;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: auto;
  display: flex;
  flex-direction: row;
  padding: 0;
}

.hron-funnel-container .hron-modal-body {
  overflow-y: auto;
  max-height: 60vh;
  padding: 32px;
}

@media (max-width: 900px) {
  .hron-funnel-container .hron-modal-content {
    flex-direction: column;
    max-width: 100vw !important;
    border-radius: 0;
  }
  .hron-funnel-container .hron-modal-right {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hron-funnel-container .hron-modal-content {
    flex-direction: column;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .hron-funnel-container .hron-modal-right {
    display: none !important;
  }
  .hron-funnel-container .hron-modal-body {
    max-height: 60vh;
    padding: 10px;
  }
}

.hron-funnel-container .hron-modal-overlay {
  overflow-x: hidden !important;
  overflow-y: auto;
}

.hron-funnel-container .hron-modal-content {
  max-width: 98vw !important;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden !important;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
}

.hron-funnel-container .hron-modal-image-container {
  max-width: 220px;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.hron-funnel-container .hron-modal-image-container img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
a:hover {
  text-decoration: none;
  color:white !important;
}

@media (max-width: 768px) {
  .hron-funnel-container .hron-modal-overlay {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    background: rgba(0,0,0,0.35) !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    position: fixed !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9999 !important;
  }
  .hron-funnel-container .hron-modal-content {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    padding: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .hron-funnel-container .hron-modal-left {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    padding: 24px 16px !important;
    box-sizing: border-box;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1 1 auto !important;
  }
  .hron-funnel-container .hron-modal-header, 
  .hron-funnel-container .hron-modal-body {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  .hron-funnel-container .hron-modal-body {
    overflow-y: auto !important;
    max-height: unset !important;
  }
  .hron-funnel-container .hron-modal-image-container img {
    width: 100% !important;
    height: auto !important;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  .hron-funnel-container .hron-modal-right {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
@media (max-width: 1024px) {
  .hron-funnel-container .hron-modal-left {
    flex: 0 0 350px !important;
  }
  .hron-funnel-container .hron-modal-right {
    min-width: 200px !important;
  }
  .hron-funnel-container .hron-modal-image-container {
    width: 160px !important;
    height: 224px !important;
  }
}
@media (max-width: 480px) {
  .hron-funnel-container .hron-modal-content {
    padding: 25px 15px !important;
    max-width: 100% !important;
    max-height: 90vh !important;
    border-radius: 12px !important;
  }
  .hron-funnel-container .hron-modal-title {
    font-size: 22px !important;
  }
  .hron-funnel-container .hron-modal-cta-btn {
    padding: 12px 24px !important;
    font-size: 14px !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .hron-funnel-container .hron-modal-actions {
    margin-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .hron-modal-right,
  .hron-funnel-container .hron-modal-right {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .hron-funnel-container .hron-modal-overlay,
  .hron-funnel-container .hron-modal-content,
  .hron-funnel-container .hron-modal-left,
  .hron-funnel-container .hron-modal-body {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
  html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
}

.hron-modal-top-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  
  
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  z-index: 10001;
}

#hron-back-to-text-btn {
  order: 1 !important;
}

#modalClose {
  order: 2 !important;
}
.hron-modal-back-to-text-btn {
  background: #e0e0e0;
  color: #666;
  border: none;
  border-radius: 60px;
  padding: 7px 10px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  height: 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.hron-modal-back-to-text-btn:hover {
  background: #d1d1d1;
  color: #0a0a0a;
}
.hron-modal-close {
  position: relative;
  top: 0;
  right: 0;
  margin: 0;
}