/* ============================================================================
        BANNER BACKGROUND
  ============================================================================ */
.banner-bg {
  background-image: url("../../images/home-images/listing-banner.svg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 75vh;
}

/* ============================================================================
        HERO SECTION
        ============================================================================ */

.hero-title {
  color: #ffffffff;
}

.hero-subtitle {
  color: #ffffffff;
}

/* ============================================================================
        COMPANY DETAILS SECTION
        ============================================================================ */
.company-details-section {
  position: relative;
  z-index: 10;
}

.company-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 36px 36px 0 0;
  padding: 32px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-height: auto;
  position: relative;
  bottom: 0;
}

/* ============================================================================
        BREADCRUMB
        ============================================================================ */
.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.breadcrumb-content {
  text-align: left;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.breadcrumb-item a {
  padding-right: 4px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

li.breadcrumb-item.active::before {
    content: none;
}
li.breadcrumb-item.active {
    padding-left: 0;
}

.breadcrumb-arrow {
  margin-right: 12px;
  display: block;
  height: 8px;
  width: 8px;
  transform: rotate(45deg);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-top: 2px solid rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active .breadcrumb-arrow {
  display: none;
}

.product-scores-label.xsmall {
    display: block;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 17px;
    font-size: 16px;
    padding-right: 5px;
    margin-bottom: 0;
}
.size {
    -webkit-transform: scale(1);
    transform: scale(1);
    margin-left: 3px;
    margin-right: 3px;
    display: inline-block;
    vertical-align: bottom;
    padding-top: 3px;
    border: 1px solid #dcdcdcf2;
    padding: 0 7px;
    font-weight: 600;
}
.size.size-small::after {
    content:'S';
}
.size.size-medium::after {
    content:'M';
}
.size.size-large::after {
    content:'L';
}
.disabled {
    opacity: .4;
}

.content-dp-right {
    display: flex;
    align-items: center;
}

.size:not(.disabled) {
    background: #fff;
    color: #342c6c;
}

/* ============================================================================
        COMPANY INFO
        ============================================================================ */
.company-info {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  gap: 20px;
  flex-wrap: wrap;
}

/* Logo */
.company-logo-wrapper {
  flex: 1;
  position: relative;
  aspect-ratio: 25/24;
  /*max-width: 160px;*/
  width: 100%;
  padding: 20px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  /*width: 100%;
  height: 100%;*/
  object-fit: contain;
}

/* Company Details */
.company-details {
  flex: 9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 8px;
}

.company-title {
  font-size: 28px;
  font-weight: 600;
  color: white;
}

/* Meta Info */
.company-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.meta-item {
  font-size: 12px;
  color: white;
}

.meta-divider {
  margin: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 16px;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

.star {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.star-filled {
  color: #fbbf24;
}

.star-empty {
  color: #fbbf24;
}

/* Company Navigation */
.company-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.nav-link {
  font-size: 12px;
  color: white;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffc415;
}

.nav-link.active {
  color: #ffc415;
  font-weight: 700;
}

.nav-divider {
  margin: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  height: 16px;
}

/* ============================================================================
        RESPONSIVE DESIGN
        ============================================================================ */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 48px 0;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .company-info {
    margin-top: 60px;
    margin-top: 30px;
  }

  .company-title {
    font-size: 42px;
  }

  .meta-item,
  .nav-link {
    font-size: 16px;
  }

  .star {
    width: 24px;
    height: 24px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .hero-section {
    padding: 4px 0;
  }

  .company-logo-wrapper {
    margin-left: 0;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .company-title {
    font-size: 20px;
  }

  .company-card {
    padding: 20px;
  }

  .company-logo-wrapper {
    max-width: 100px;
  }

  .meta-item,
  .nav-link {
    font-size: 10px;
  }

  .banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================================
        FEATURES SECTION
        ============================================================================ */
.features-section {
  background-color: #ffffff;
  color: #1a1a1a;
}

/* Section Heading */
.section-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 48px;
  color: #000;
  opacity: 1;
  transform: none;
}

/* ============================================================================
        FEATURES CARD
        ============================================================================ */
.features-card {
  background-color: #f2f2f2cc;
  padding: 40px;
  border: 2px solid #b1b1b1;
  border-radius: 8px;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Features Title */
.features-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 8px 0;
}

/* ============================================================================
        FEATURES GRID
        ============================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #000;
  position: relative;
    padding-left: 30px;
}
.feature-item::before {
    content: '';
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE1LjQ5OTkgMTAuNjY1M0wxMS40OTk5IDE0LjY2NTNMOS40OTk5IDEyLjY2NTNNMTMuNzQ2IDQuMTI0MDJMMTQuOTY3IDUuMTY0NTFDMTUuMjc0NiA1LjQyNjY1IDE1LjY1NjggNS41ODUxIDE2LjA1OTYgNS42MTcyNUwxNy42NTg2IDUuNzQ0OTFDMTguNTk4NyA1LjgxOTkzIDE5LjM0NTggNi41NjY0MyAxOS40MjA4IDcuNTA2NTZMMTkuNTQ3NCA5LjEwNTY4QzE5LjU3OTYgOS41MDg1NSAxOS43MzgzIDkuODkxMDMgMjAuMDAwNSAxMC4xOTg2TDIxLjA0MTQgMTEuNDE5NkMyMS42NTMxIDEyLjEzNzQgMjEuNjUyNiAxMy4xOTMxIDIxLjA0MDkgMTMuOTExTDIwLjAwMDkgMTUuMTMyQzE5LjczODcgMTUuNDM5NiAxOS41Nzk5IDE1LjgyMiAxOS41NDc4IDE2LjIyNDlMMTkuNDE5OCAxNy44MjM5QzE5LjM0NDggMTguNzY0MSAxOC41OTkyIDE5LjUxMDYgMTcuNjU5MSAxOS41ODU3TDE2LjA1OTUgMTkuNzEzM0MxNS42NTY2IDE5Ljc0NTQgMTUuMjc0MyAxOS45MDM4IDE0Ljk2NjcgMjAuMTY2TDEzLjc0NiAyMS4yMDY1QzEzLjAyODIgMjEuODE4MiAxMS45NzE2IDIxLjgxODMgMTEuMjUzOCAyMS4yMDY1TDEwLjAzMzEgMjAuMTY2QzkuNzI1NSAxOS45MDM5IDkuMzQzMiAxOS43NDU0IDguOTQwMzMgMTkuNzEzMkw3LjM0MDcyIDE5LjU4NTdDNi40MDA1OSAxOS41MTA3IDUuNjU1MDEgMTguNzY0MSA1LjU3OTk4IDE3LjgyNEw1LjQ1MjA1IDE2LjIyNDhDNS40MTk5IDE1LjgyMiA1LjI2MTA3IDE1LjQzOTYgNC45OTg5MyAxNS4xMzE5TDMuOTU4ODkgMTMuOTExQzMuMzQ3MTYgMTMuMTkzMiAzLjM0Njk3IDEyLjEzNzQgMy45NTg3IDExLjQxOTVMNC45OTkzOSAxMC4xOTg2QzUuMjYxNTIgOS44OTEgNS40MTk0OSA5LjUwODU3IDUuNDUxNjMgOS4xMDU3TDUuNTc5NjYgNy41MDY1OEM1LjY1NDY4IDYuNTY2NDUgNi40MDE1NSA1LjgxOTg5IDcuMzQxNjggNS43NDQ4Nkw4LjkzOTgyIDUuNjE3M0M5LjM0MjY5IDUuNTg1MTUgOS43MjU2NiA1LjQyNjY4IDEwLjAzMzMgNS4xNjQ1NEwxMS4yNTQxIDQuMTI0MDJDMTEuOTcxOSAzLjUxMjI5IDEzLjAyODIgMy41MTIyOSAxMy43NDYgNC4xMjQwMloiIHN0cm9rZT0iIzY3OTAzRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3N2Zz4=');
    flex-shrink: 0;
    transform: scale(1.00868);
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
}

.feature-item:hover::before {
    transform: scale(1.1);
}

/* Check Icon */
.check-icon-wrapper {
  flex-shrink: 0;
  transform: scale(1.00868);
  transition: transform 0.3s ease;
}

.check-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.feature-item:hover .check-icon-wrapper {
  transform: scale(1.1);
}

/* Feature Text */
.feature-text {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
}

/* ============================================================================
        SHOW MORE BUTTON
        ============================================================================ */
.button-container {
  padding-top: 40px;
  margin: 0 auto;
  text-align: center;
  opacity: 1;
  transform: none;
}

.btn-show-more {
  background-color: #e5e7eb;
  color: #000;
  border: 2px solid transparent;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-show-more:hover {
  background-color: #ffc415;
  border-color: #ffc415;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 21, 0.3);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon {
  /* width: 16px;
            height: 16px;
            margin-left: 8px; */
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-show-more:hover .arrow-icon {
  transform: translateX(4px);
}

/* Mouse cursor gradient effect */
.btn-show-more::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 196, 21, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  left: var(--x, 50%);
  top: var(--y, 50%);
}

.btn-show-more:hover::before {
  opacity: 1;
}

/* ============================================================================
        RESPONSIVE DESIGN
        ============================================================================ */

/* Small Mobile (576px and up) */
@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .section-heading {
    font-size: 30px;
  }

  .features-title {
    font-size: 24px;
  }

  .feature-text {
    font-size: 18px;
  }

  .button-container {
    padding-top: 40px;
  }
}

/* Large Tablet/Desktop (1024px and up) */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
  .features-card {
    padding: 24px;
  }

  .section-heading {
    font-size: 18px;
    margin-top: 24px;
  }

  .features-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 14px;
  }

  .btn-show-more {
    width: 100%;
    padding: 10px 20px;
  }
}

/* ============================================================================
        ABOUT SECTION
        ============================================================================ */
.about-section {
  background-color: #ffffff;
  padding: 20px 0;
}

.about-content {
  padding: 40px 0;
}

/* ============================================================================
        MAIN GRID LAYOUT
        ============================================================================ */
.about-grid {
  /*display: grid;*/
  /*grid-template-columns: 1fr;*/
  /*gap: 32px;*/
  /*align-items: start;*/
  /*margin-bottom: 20px;*/
  /*margin-top: 48px;*/
}

@media (min-width: 1024px) {
  .about-grid {
    /*grid-template-columns: 2fr 1fr;*/
  }
}

/* ============================================================================
        LEFT COLUMN - MAIN CONTENT
        ============================================================================ */
.left-column {
  /*width: 100%;*/
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================================
        DESCRIPTION CARD
        ============================================================================ */
.description-card {
  background-color: #f2f2f2cc;
  border: 2px solid #b1b1b1;
  border-radius: 8px;
  padding: 35px;
}

.description-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .description-text {
    font-size: 18px;
  }
}

/* Divider */
.divider {
  margin-top: 50px;
  margin-bottom: 20px;
  border: none;
  border-top: 1px solid #b1b1b1;
}

/* ============================================================================
        DEMO BANNER
        ============================================================================ */
.demo-banner {
  height: 120px;
  background: linear-gradient(135deg, #483385 0%, #342c6c 100%);
  border-radius: 8px;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
}

.demo-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .demo-content {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.demo-text {
  display: flex;
  flex-direction: column;
}

.demo-subtitle {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}

.demo-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 640px) {
  .demo-subtitle {
    font-size: 16px;
  }
  .demo-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .demo-subtitle {
    font-size: 20px;
  }
  .demo-title {
    font-size: 25px;
  }
}

.demo-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.demo-btn {
  background: #ffc415;
  color: #290761;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid #ffc415;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 21, 0.4);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.arrow-icon {
  /* width: 16px;
            height: 16px; */
  display: inline-block;
  transition: transform 0.3s ease;
}

.demo-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ============================================================================
        REVIEWS SECTION
        ============================================================================ */
.reviews-section {
  padding: 20px 0;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    flex-direction: row;
    gap: 24px;
    margin: 80px 0;
  }
}

/* Smiley Animation */
.smiley-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .smiley-wrapper {
    width: 20%;
  }
}

.smiley {
  width: 100px;
  height: 100px;
  background: white;
  border: 6px solid black;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  animation: zoomInOut 2s infinite ease-in-out;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.smiley::before,
.smiley::after {
  content: "";
  width: 10px;
  height: 20px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 25px;
}

.smiley::before {
  left: 25px;
}

.smiley::after {
  right: 25px;
}

.smile {
  width: 60px;
  height: 60px;
  border-bottom: 6px solid black;
  border-radius: 0 0 40px 40px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceSmile 2s infinite ease-in-out;
}

@keyframes bounceSmile {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.smile-ratings {
  margin-left: 8px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
}

/* Recommendation Stats */
.recommendation-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .recommendation-stats {
    width: 20%;
    margin-bottom: 16px;
  }
}

@media (min-width: 1280px) {
  .recommendation-stats {
    margin-top: 50px;
  }
}

.stats-number {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  transform: scale(1.046);
}

.stats-text {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

/* Rating Bars */
.rating-bars {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .rating-bars {
    width: 60%;
  }
}

.rating-item {
  padding: 8px;
  margin-bottom: 16px;
  width: 100%;
}

.rating-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}

@media (min-width: 1024px) {
  .rating-bar-wrapper {
    flex-direction: row;
    align-items: center;
    margin-bottom: 4px;
  }
}

.rating-bar-bg {
  width: 220px;
  height: 20px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .rating-bar-bg {
    width: 350px;
  }
}

.rating-bar-fill {
  height: 20px;
  background-color: #facc15;
  border-radius: 9999px;
  transition: width 0.5s ease;
}

.rating-count {
  font-size: 13px;
  font-weight: 500;
  margin-left: 4px;
}

.rating-source {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

/* ============================================================================
        VIEW RATING SECTION
        ============================================================================ */
.view-rating-section {
  margin-top: 16px;
}

@media (min-width: 1280px) {
  .view-rating-section {
    margin-top: 8px;
  }
}

.view-rating-card {
  background-color: #f2f2f2cc;
  color: #000;
  padding: 20px;
  border: 2px solid #b1b1b1;
  border-radius: 8px;
}

.view-rating-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Dropdown */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 24px;
}

.rating-dropdown {
  background: white;
  border: 1px solid #9ca3af;
  border-radius: 4px;
  padding: 8px 16px;
  width: 200px;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23000" d="M6 8L0 2 1.4.6 6 5.2 10.6.6 12 2z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.view-rating-description {
  font-size: 18px;
  font-weight: 400;
  margin: 16px 0;
  line-height: 1.8;
}

.overall-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 16px;
}

/* ============================================================================
        CIRCULAR RATING LIST
        ============================================================================ */
.circular-rating-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.circular-rating-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Circular Progress */
.circular-progress {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.progress-circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s ease-out;
}

.progress-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.rating-details {
  flex: 1;
}

.rating-name {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin-bottom: 4px;
}

.rating-subtitle {
  font-weight: 500;
  font-size: 18px;
  color: #4a4a4a;
}

/* ============================================================================
        RIGHT COLUMN - SIDEBAR
        ============================================================================ */
.right-column {
  /*display: flex;*/
  /*flex-direction: column;*/
  /*gap: 24px;*/
}

/* ============================================================================
        COMPARE PRODUCTS CARD
        ============================================================================ */
.compare-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #483385 0%, #342c6c 100%);
  border: 2px solid #6b7280;
  border-radius: 8px;
  padding: 40px;
  padding-top: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .compare-card {
    padding-top: 24px;
  }
}

/* Product Item */
.product-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.product-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Custom Checkbox */
.product-checkbox {
  position: relative;
  align-items: flex-end;
}

.custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  width: 20px;
  height: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #9ca3af;
  background-color: #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label::after {
  content: "✓";
  color: #9ca3af;
  font-size: 10px;
  position: absolute;
}

.custom-checkbox:checked + .checkbox-label {
  background-color: #483385;
  border-color: #483385;
}

.custom-checkbox:checked + .checkbox-label::after {
  color: white;
}

.product-name {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Compare Button */
.compare-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 0.5s ease forwards 0.3s;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.secondary-btn {
  background-color: #e5e7eb;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.secondary-btn:hover {
  border-color: #ffc415;
  background-color: #ffc415;
  transform: translateY(-2px);
}

/* ============================================================================
        FORM BANNER CARD
        ============================================================================ */
.form-banner-card {
  min-height: 400px;
  background-image: url("../../assets/images/ehrreviews-banner.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 40px;
  padding-top: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .form-banner-card {
    padding-top: 24px;
  }
}

@media (min-width: 1536px) {
  .form-banner-card {
    min-height: 500px;
  }
}

.form-card-inner {
  position: relative;
  bottom: 0;
  height: 45vh;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  color: white;
}

@media (min-width: 640px) {
  .form-card-inner {
    height: 50vh;
  }
}

@media (min-width: 1280px) {
  .form-card-inner {
    height: 48vh;
  }
}

@media (min-width: 1536px) {
  .form-card-inner {
    height: 50vh;
  }
}

/* Yellow Arrow Icon */
.form-arrow-icon {
  position: absolute;
  right: -8px;
  top: -4px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #facc15;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .form-arrow-icon {
    top: -8px;
  }
}

@media (min-width: 768px) {
  .form-arrow-icon {
    right: -16px;
    top: -16px;
  }
}

@media (min-width: 1280px) {
  .form-arrow-icon {
    right: -8px;
    top: -8px;
    width: 65px;
    height: 65px;
  }
}

.form-arrow-icon:hover {
  transform: scale(1.1);
}

.form-arrow-icon img {
  width: 25px;
  height: 25px;
  transition: transform 0.5s ease;
}

.form-arrow-icon:hover img {
  transform: translate(-8px, 8px);
}

/* Form Content */
.form-content-wrapper {
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 10;
  width: 100%;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .form-content-wrapper {
    padding: 0 16px;
  }
}

@media (min-width: 768px) {
  .form-content-wrapper {
    top: 20px;
  }
}

@media (min-width: 1280px) {
  .form-content-wrapper {
    top: 15px;
  }
}

@media (min-width: 1536px) {
  .form-content-wrapper {
    top: 30px;
  }
}

.form-heading {
  margin-left: 16px;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.hubspot-form {
  z-index: 9999;
  width: 100%;
  margin-top: 12px;
}

@media (min-width: 640px) {
  .hubspot-form {
    margin-top: 8px;
  }
}

/* ============================================================================
        HUBSPOT FORM STYLES
        ============================================================================ */
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 {
  display: flex;
  flex-direction: column;
}

#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
#hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 305px;
  height: 30px;
  font-size: 12px;
  background-color: #fff;
  margin: 2px 18px;
  color: #290761;
}

label[for="firstname-357a42f3-9e6e-4fc8-b266-424fa50bc997"] {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 20px;
  color: #fff;
  white-space: nowrap;
}

label#label-lastname-357a42f3-9e6e-4fc8-b266-424fa50bc997,
label#label-phone-357a42f3-9e6e-4fc8-b266-424fa50bc997,
label#label-email-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  margin: 4px 20px;
  color: #fff;
  white-space: nowrap;
  font-size: 14px;
}

.hs_submit .actions {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  margin-top: 20px;
}

.hs-form-field > label {
  display: block !important;
  color: #fff !important;
}

.hs-form-field > label,
.hs-form-field > label span {
  display: inline;
  color: #fff;
  font-size: 18px;
}

.hs_submit .primary {
  white-space: pre-wrap;
  background: #ffc415 !important;
  padding: 4.5px 20px;
  border-radius: 50px;
  border: 1px solid #ffc415;
  color: #290761;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s ease;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-wrap: nowrap;
  outline: none;
  cursor: pointer;
}

.hs_submit .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 196, 21, 0.4);
}

ul.no-list.hs-error-msgs.inputs-list {
  font-size: 9.5px;
  color: red;
}

/* Hide specific fields */
label#label-practice_name-357a42f3-9e6e-4fc8-b266-424fa50bc997,
select#state___cloned_-357a42f3-9e6e-4fc8-b266-424fa50bc997,
label#label-state___cloned_-357a42f3-9e6e-4fc8-b266-424fa50bc997,
label#label-specialty-357a42f3-9e6e-4fc8-b266-424fa50bc997,
input#practice_name-357a42f3-9e6e-4fc8-b266-424fa50bc997,
select#specialty-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
  display: none !important;
}

/* ============================================================================
        RESPONSIVE BREAKPOINTS
        ============================================================================ */

@media (max-width: 1400px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    padding: 8px;
    width: 230px;
    height: 22px;
    font-size: 12px;
    margin: 2px 18px;
  }
}

@media (max-width: 1200px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    padding: 8px;
    width: auto;
    height: 22px;
    font-size: 12px;
    margin: 2px 18px;
  }

  .hs_submit .primary {
    padding: 4px;
    font-size: 14px;
    width: 60%;
  }
}

@media (max-width: 991px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    padding: 8px;
    width: 600px;
    height: 22px;
    font-size: 12px;
    margin: 2px 18px;
  }
}

@media (max-width: 768px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    padding: 8px;
    width: 350px;
    height: 22px;
    font-size: 12px;
    margin: 2px 18px;
  }
}

@media (max-width: 580px) {
  .hs_submit .primary {
    padding: 4px 12px;
    font-size: 12px;
    margin-top: 30px;
  }

  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    width: 200px;
    height: 25px;
    font-size: 12px;
    margin: 2px 18px;
  }
}

@media (max-width: 540px) {
  .demo-btn,
  .secondary-btn {
    padding: 4px 12px;
    font-size: 12px;
  }
}

@media (max-width: 490px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    width: 240px;
    height: 25px;
    font-size: 12px;
    margin: 2px 18px;
  }
}

@media (max-width: 390px) {
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 button,
  #hsForm_357a42f3-9e6e-4fc8-b266-424fa50bc997 fieldset.form-columns-2 input {
    width: 85%;
    height: 20px;
  }

  label[for="firstname-357a42f3-9e6e-4fc8-b266-424fa50bc997"],
  label#label-lastname-357a42f3-9e6e-4fc8-b266-424fa50bc997,
  label#label-phone-357a42f3-9e6e-4fc8-b266-424fa50bc997,
  label#label-email-357a42f3-9e6e-4fc8-b266-424fa50bc997 {
    font-size: 12px;
    margin-top: 0px;
  }

  .hs_submit .primary {
    padding: 6.5px 20px;
    font-size: 12px;
  }

  .form-arrow-icon {
    width: 50px;
    height: 50px;
  }

  .form-arrow-icon img {
    width: 20px;
    height: 20px;
  }

  .form-heading {
    margin-bottom: 5px;
  }
}

/* pros-cons.css - Minimal Custom Styles */

/* Content Wrapper with Gradient */
.content-wrapper {
  /* background: linear-gradient(180deg, #EDE9FE 0%, #FEF3C7 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.r-1 {
  padding: 30px 15px 0px 15px;
  background: #f6f5ff;
}

.r-2 {
  padding: 0px 15px 30px 15px;
  background: #fff7e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Arrow Graphic Container */
.arrow-graphic {
  min-height: 500px;
  position: relative;
}

/* Vector Label */
.vector-label {
  top: 20px;
  left: 20px;
  background: #3b82f6;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

/* Arrow Shape */
.arrow-shape {
  width: 220px;
  height: 450px;
}

.arrow-top {
  background: #2c2563;
  height: 60%;
  clip-path: polygon(20% 30%, 80% 30%, 100% 0%, 50% 0%, 0% 0%, 20% 30%);
  padding-top: 40px;
}

.arrow-bottom {
  background: #ffc415;
  height: 40%;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    80% 70%,
    100% 100%,
    50% 100%,
    0% 100%,
    20% 70%
  );
  padding-top: 20px;
}

.arrow-text {
  font-size: 3rem;
  font-weight: 700;
}

/* Icon Wrapper */
.icon-wrapper {
  width: 32px;
  height: 32px;
  margin-top: 2px;
}

.pros-icon {
  background: #ede9fe;
}

/* Card Title */
.card-title {
  font-size: 1rem;
  line-height: 1.4;
}

/* Card List Items */
.card-list li {
  /* font-size: 0.875rem; */
  /* color: #374151; */
  padding-left: 16px;
  position: relative;
  /* line-height: 1.5; */
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1f2937;
  font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
  .arrow-graphic {
    min-height: 350px;
  }

  .arrow-shape {
    width: 180px;
    height: 350px;
  }

  .arrow-text {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .arrow-graphic {
    min-height: 300px;
  }

  .arrow-shape {
    width: 150px;
    height: 300px;
  }

  .arrow-text {
    font-size: 2rem;
  }

  .vector-label {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 3px 10px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-list li {
    font-size: 0.825rem;
  }
}

.pros-house-wrapper {
  display: inline-block;
}

.pros-house-wrapper svg {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.cons-house-wrapper {
  display: inline-block;
}

.cons-house-wrapper svg {
  width: 100%;
  height: auto;
  max-width: 300px;
}
.list-unstyled {
  text-align: start !important;
}
/* ================================PROGRESS BAR SECTIONS=======================*/

/* Main Section */
.section-wrapper .comparison-section {
  position: relative;
  background: linear-gradient(135deg, #4a3f7a 0%, #342c6c 50%, #2d2560 100%);
  border-radius: 20px;
  padding: 80px 40px;
  overflow: hidden;
}

/* Decorative Background Elements */
.bg-decoration {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.bg-circle-top {
  top: -335px;
  left: -335px;
  width: 670px;
  height: 670px;
  opacity: 0.2;
  animation: rotateClockwise 80s linear infinite;
}

.bg-circle-bottom {
  bottom: -283px;
  right: -334px;
  width: 800px;
  height: 800px;
  opacity: 0.2;
  transform: rotate(127deg);
  animation: rotateAnticlockwise 80s linear infinite;
}

.yellow-glow {
  position: absolute;
  top: 77%;
  left: 86%;
  width: 50px;
  height: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: radial-gradient(
    circle,
    rgba(255, 196, 21, 0.9) 0%,
    rgba(255, 216, 0, 0.5) 40%,
    rgba(255, 216, 0, 0.2) 70%,
    transparent 100%
  );
  filter: blur(25px) drop-shadow(0 0 30px #ffc415) drop-shadow(0 0 60px #ffd800);
  animation: blastPulse 2s ease-out forwards;
  pointer-events: none;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateAnticlockwise {
  from {
    transform: rotate(127deg);
  }
  to {
    transform: rotate(-233deg);
  }
}

@keyframes blastPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
}

/* Container */
.comparison-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 36px;
  padding: 60px;
}

.desktop-view {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 50px;
}

/* EHR Column */
.ehr-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ehr-header h2 {
  font-size: 44px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: #ffc415;
  font-size: 24px;
}

.star.half {
  background: linear-gradient(90deg, #ffc415 50%, rgba(255, 255, 255, 0.3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.star.empty {
  color: rgba(255, 255, 255, 0.3);
}

.rating-text {
  color: white;
  font-size: 27px;
  font-weight: 500;
  margin-left: 8px;
}

/* Company Logo */
.company-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.logo-icon {
  font-size: 24px;
}

.company-logo span {
  color: white;
  font-size: 18px;
}

/* View Profile Button */
.view-profile-btn {
  display: inline-block;
  background: #ffc415;
  color: #1a1a1a;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.view-profile-btn:hover {
  background: white;
  transform: translateY(-2px);
}

/* Metrics */
.metric-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.metric-info {
  min-width: 60px;
}

.metric-value {
  font-size: 26px;
  font-weight: 600;
  color: white;
}

.metric-count {
  font-size: 16px;
  color: #d9d9d9;
}

/* Progress Bars */
.progress-bar {
  flex: 1;
  height: 28px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.progress-bar.yellow-bg {
  background: #ffc415;
}

.progress-bar.purple-bg {
  background: #6b5b95;
}

.progress-fill {
  height: 100%;
  background: white;
  transition: width 0.5s ease-in-out;
}

/* Separator Section */
.separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 30px;
}

.separator-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 0;
}

/* .separator-line.top-line {
            height: 80px;
            margin-bottom: -1px;
        }

        .separator-line.bottom-line {
            height: 80px;
            margin-top: -1px;
        } */

.separator-box {
  background: rgba(119, 103, 153, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 30px 40px;
  width: 220px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.separator-box .feature-item {
  text-align: center;
  padding: 18px 0;
  position: relative;
}

.separator-box .feature-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.separator-box h5 {
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .separator {
    display: none;
  }
}
/* Connection Lines */
.top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.2);
}

.bottom-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile View - Hidden by default */
.mobile-view {
  display: none;
}
@media (max-width: 992px) {
  .cons-house-wrapper {
    display: none;
  }
  .pros-house-wrapper {
    display: none;
  }
  .r-1 {
    padding: 20px;
  }
  .r-2 {
    padding: 20px;
  }
}
/* Responsive Design */
@media (max-width: 1199px) {
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }

  .comparison-container {
    padding: 40px 20px;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .mobile-ehr-header {
    text-align: center;
    flex: 1;
  }

  .mobile-ehr-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
  }

  .mobile-star-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
  }

  .mobile-star-rating .star {
    font-size: 16px;
  }

  .mobile-star-rating .rating-text {
    font-size: 14px;
    margin-left: 4px;
  }

  /* Mobile Comparison Bars */
  .mobile-comparison {
    margin-top: 24px;
  }

  .mobile-metric {
    margin-bottom: 24px;
  }

  .mobile-metric h3 {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .mobile-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-metric-info {
    min-width: 50px;
    text-align: center;
  }

  .mobile-metric-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
  }

  .mobile-metric-count {
    font-size: 10px;
    color: #d9d9d9;
  }

  .mobile-progress {
    flex: 1;
    height: 20px;
    display: flex;
    overflow: hidden;
  }

  .mobile-progress-left {
    border-radius: 20px 0 0 20px;
  }

  .mobile-progress-right {
    border-radius: 0 20px 20px 0;
  }

  .mobile-progress-fill {
    height: 100%;
  }

  .mobile-progress-fill.yellow {
    background: #ffc415;
  }

  .mobile-progress-fill.purple {
    background: #6b5b95;
  }

  .mobile-progress-fill.light {
    background: #f6f5ff;
  }

  .mobile-cta {
    text-align: center;
    margin-top: 32px;
  }

  .mobile-cta a {
    display: inline-block;
    background: #ffc415;
    color: #1a1a1a;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-cta a:hover {
    background: white;
  }
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 20px;
  }

  .comparison-container {
    padding: 32px 16px;
  }

  .mobile-ehr-header h2 {
    font-size: 16px;
  }
}

/* ======================================== */

/* Summary Box */
.summary-box {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  margin-bottom: 30px;
}

.summary-column {
  flex: 1;
  padding: 0 20px;
}

.summary-column:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}

/* Overall Rating */
.overall-rating {
  text-align: center;
}

.overall-rating h3 {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 15px;
}

.rating-number {
  font-size: 48px;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  letter-spacing: 3px;
}

/* Rating Breakdown */
.rating-breakdown h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.rating-label {
  font-size: 14px;
  color: #666;
  width: 15px;
  margin-right: 10px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 10px;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, #6b4ce6 0%, #9b7ef5 100%);
  border-radius: 4px;
}

.rating-count {
  font-size: 12px;
  color: #999;
  width: 25px;
}

/* Write Experience */
.write-experience {
  text-align: center;
}

.write-experience h3 {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
}

.view-profile-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 12px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s;
}

.view-profile-btn:hover {
  transform: translateY(-2px);
}

/* Review Cards */
.review-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  gap: 40px;
}

/* Left Side - Metrics */
.review-metrics {
  flex: 0 0 280px;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.metric-item {
  margin-bottom: 20px;
}

.metric-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.metric-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #6b4ce6 0%, #9b7ef5 100%);
  border-radius: 4px;
}

/* Right Side - Review Content */
.review-content {
  flex: 1;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.review-stars {
  color: #ffc107;
  font-size: 16px;
  letter-spacing: 2px;
}

.new-badge {
  background: #f5f5f5;
  color: #666;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
/* 
        .review-text {
            font-size: 14px;
            line-height: 1.8;
            color: #555;
        } */

/* Responsive */
@media (max-width: 768px) {
  .summary-box {
    flex-direction: column;
    gap: 30px;
  }

  .summary-column {
    border-right: none !important;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
  }

  .summary-column:last-child {
    border-bottom: none;
  }

  .review-card {
    flex-direction: column;
    gap: 25px;
  }

  .review-metrics {
    flex: 1;
  }
}
