:root {
  --vce-border: #C3CDE2;
  --vce-primary: rgb(var(--versa-erp));
  --vce-primary-20: rgba(var(--versa-erp), 0.2);
  --vce-primary-50: rgba(var(--versa-erp), 0.5);
}

/*============================*/
/* HUBSPOT BASE               */
/*============================*/
.hs-form {
  display: flex !important;
  flex-direction: column;
  gap: 15px !important;

  p {
    font-size: 11px !important;
  }

  textarea {
    min-height: 100px;
  }

  .hs-main-font-element {
    h3 {
      font-size: 28px;
      font-weight: 700;
      margin: 0;
      margin-bottom: 20px;
    }

    p {
      font-size: 14px !important;
    }
  }

  div:first-child,
  .legal-consent-container {
    grid-column: span 3;
  }

  .hs_versa_cloud_business_solutions label {
    display: none !important;
  }
}

.hs-fieldtype-intl-phone.hs-input input,
.hs-fieldtype-intl-phone.hs-input select {
  height: auto;
  border: none;
}

.hs-fieldtype-textarea.hs-input {
  height: 65px !important;
}

.legal-consent-container~.hs_recaptcha {
  display: none;
}

.hbspt-form .hs-form .legal-consent-container .hs-richtext p {
  margin: 20px auto 20px;
  text-align: left;
  opacity: 0.6;
}

.hbspt-form .hs-submit .hs-button.primary.large {
  border-radius: 15px;
  font-weight: 600;
}

.submitted-message p,
.submitted-message p span {
  color: var(--vce-primary) !important;
  text-align: center;
  font-size: 22px;
}

.hbspt-form .hs-form .hs-form-field>label,
.hbspt-form .hs-form fieldset .hs-form-field>label {
  margin: 0 8px !important;
}

.hbspt-form .hs-form .hs-form-field>.input>.hs-input,
.hbspt-form .hs-form fieldset .hs-form-field>.input>.hs-input {
  border-color: #dedede;
  background-color: #F7F7F7;
  box-shadow: none;
  border-radius: 15px;
}

/*============================*/
/* PAGE BASE                 */
/*============================*/
section[class^='section'] {
  display: flex;
}

strong {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
}

sup {
  font-size: 12px;
  vertical-align: middle;
  color: inherit !important;
}

.button {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 15px 24px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid rgb(var(--versa-erp));
}

.button.solid {
  background: rgb(var(--versa-erp));
  color: var(--vce-default-white);
}

.button.solid.inverted {
  background: var(--vce-default-white);
  border-color: var(--vce-default-white);
  color: rgb(var(--versa-erp));
}

.button.outline {
  color: rgb(var(--versa-erp));
}

.section-titles {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  gap: 15px;
}

.section-titles.left {
  align-items: start;
  justify-content: start;
  text-align: left;
}

.section-titles.large {
  max-width: 940px;
}

.section-titles.medium {
  max-width: 650px;
}

.section-titles.small {
  max-width: 400px;
}

.section-titles h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 38px;
  margin: 0;
}

.section-titles h3 {
  color: rgb(var(--versa-erp));
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
}

.section-titles p {
  font-size: 18px;
  line-height: 26px !important;
  margin: 0;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.section-wrapper.centered {
  align-items: center;
  justify-content: center;
}

/*============================*/
/* HEADER SECTION             */
/*============================*/
.site-header {
  background: url(/wp-content/themes/versaccounts/assets/images/home/home-hero-bg.jpg);
  background-repeat: no-repeat;
  padding-top: 80px;
  position: relative;

  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
    align-items: stretch;
  }

  /* LEFT CONTENT */
  .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
    color: #1a1a1a;

    img {
      max-width: 180px;
      margin-bottom: 25px;
    }

    h1 {
      font-size: 2.6rem;
      margin: 0 0 1rem;
      line-height: 2.7rem;
      font-weight: 800;
      letter-spacing: -1px;
    }

    p {
      font-size: 1.4rem;
      line-height: 1.9rem !important;
      margin: 0 0 3rem;
    }

    .actions {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      max-width: 510px;

      .buttons {
        display: flex;
        gap: 1rem;

        .button {
          width: 100%;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;

          &::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.5s ease;
          }

          &:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.3);

            &::before {
              left: 100%;
            }
          }

          &.solid:hover {
            box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.4);
          }
        }
      }
    }
  }

  /* RIGHT IMAGE */
  .header-image {
    text-align: right;
    align-self: end;
    justify-self: end;
    line-height: 0;

    img {
      max-width: 100%;
      height: auto;
      display: inline-block;
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .header-content {
      text-align: center;
      align-items: center;
      padding: 30px 0;

      .stars {
        justify-content: center;
      }

      .actions {
        align-items: center;
        width: 100%;
        max-width: 600px;
      }
    }

    .header-image {
      order: 2;
    }
  }

  @media (max-width: 768px) {
    .wrapper {
      padding: 0 15px;
      gap: 1.5rem;
    }

    .header-content {
      padding: 20px 0;

      h1 {
        font-size: 2.2rem;
        line-height: 2.3rem;
      }

      p {
        font-size: 1.2rem;
        line-height: 1.7rem !important;
      }

      .actions {
        gap: 2rem;
        max-width: 100%;

        .buttons {
          flex-direction: column;
          gap: 1rem;
        }
      }
    }
  }

  @media (max-width: 480px) {
    .header-content {
      h1 {
        font-size: 1.8rem;
        line-height: 2rem;
      }

      p {
        font-size: 1.1rem;
        line-height: 1.6rem !important;
      }
    }
  }
}

/*============================*/
/* FEATURES SECTION             */
/*============================*/
.section-features {
  position: relative;
  align-items: center;
  flex-direction: column;
  text-align: center;

  .section-wrapper {
    padding-top: 30px;
    padding-bottom: 0;
    flex-direction: row;
    gap: 50px;
  }

  .left-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 590px;
    text-align: left;

    .section-titles {
      align-items: flex-start;
      text-align: left;
      gap: 10px;

      h2 {
        font-size: 28px;
      }
    }

    ul {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 17px;
      font-weight: 500;
      padding: 0;
      margin: 0;
      list-style: none;

      li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        line-height: 1.4;

        &::before {
          content: "✓";
          color: var(--vce-primary);
          font-size: 24px;
        }

        span {
          font-weight: 600;
        }
      }
    }
  }

  .right-side {
    margin-top: -120px;
    display: flex;
    flex: 1;
    min-width: 280px;
    padding: 20px;
    padding-bottom: 50px;
    background: var(--vce-default-white);
    border: 2px solid var(--vce-primary);
    border-radius: 25px;
    box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.2);
  }

  .video-card {
    background: linear-gradient(135deg, rgb(var(--versa-erp)) 0%, #FFA700 100%);
    border-radius: 20px;
    padding: 15px 25px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    &:hover {
      transform: translateY(-3px);
    }

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s ease;
    }

    &:hover::before {
      left: 100%;
    }
  }

  .video-card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
  }

  .video-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;

    svg {
      width: 28px;
      height: 28px;
      color: white;
      fill: white;
      margin-left: 2px;
    }
  }

  .video-card:hover .video-card-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
  }

  .video-card-text {
    flex: 1;

    h4 {
      color: white;
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      line-height: normal;
    }

    p {
      color: white;
      font-size: 17px;
      opacity: 0.8;
      margin: 0;
      line-height: normal;
    }
  }

  /* Responsive Design for Features Section */
  @media (max-width: 1024px) {
    .section-wrapper {
      flex-direction: column;
      gap: 30px;
      padding: 30px 20px;
    }

    .right-side {
      order: -1;
      /* Makes right-side appear first */
      margin-top: 0;
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }

    .left-side {
      order: 1;
      /* Makes left-side appear second */
      max-width: 100%;
      text-align: center;

      .section-titles {
        align-items: center;
        text-align: center;
      }

      ul {
        max-width: 500px;
        margin: 0 auto;
      }

      .video-card {
        max-width: 400px;
        margin: 30px auto 0;
      }
    }
  }

  @media (max-width: 768px) {
    .section-wrapper {
      padding: 20px 15px;
      gap: 25px;
    }

    .left-side {
      .section-titles h2 {
        font-size: 24px;
        line-height: 28px;
      }

      .section-titles p {
        font-size: 16px;
        line-height: 22px !important;
      }

      ul {
        font-size: 15px;
        gap: 8px;

        li {
          gap: 12px;
        }
      }
    }

    .right-side {
      padding: 15px;
      padding-bottom: 30px;
      border-radius: 20px;
    }
  }
}

/*============================*/
/* SECTION DIVIDER             */
/*============================*/
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  position: relative;
  width: 100%;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background-color: rgba(var(--versa-erp), 0.4);
}

.section-divider .divider-pill {
  background: var(--vce-default-white);
  border: 1px solid var(--vce-primary);
  border-radius: 25px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--vce-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}


/*============================*/
/* CAPABILITIES SECTION        */
/*============================*/
.how-works {
  padding: 6rem 1rem;

  .how-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .how-works-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    user-select: none;

    &:hover {
      transform: translateY(-5px);
      border-color: var(--vce-primary);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .icon-circle {
      width: 84px;
      height: 84px;
      background: var(--vce-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-size: 44px;
      font-weight: 300;
      color: white;
    }

    &:hover .icon-circle {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(var(--versa-erp), 0.3);
    }

    &:first-child {
      .icon-circle {
        background: #2CA01C;
      }

      &:hover {
        border-color: #2CA01C;
      }

      &:hover .icon-circle {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(44, 160, 28, 0.3);
      }
    }

    h3 {
      font-size: 20px;
      font-weight: 800;
      margin: 0;
      line-height: normal;
    }

    p {
      font-size: 20px;
      line-height: 26px !important;
      margin: 0;
    }
  }

  /*============================*/
  /* RESPONSIVE DESIGN           */
  /*============================*/
  @media (max-width: 1024px) {
    .how-works-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    padding: 4rem 1rem;

    .how-works-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .how-works-card {
      padding: 1.5rem 1rem;
    }

    .section-titles h2 {
      font-size: 28px;
      line-height: 30px;
    }
  }
}


/*============================*/
/* WHY CHOOSE VERSAS SECTION   */
/*============================*/

.why-versa {
  .why-versa-content {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    border: 1px solid var(--vce-border);
    border-radius: 20px;
    position: relative;
  }

  .why-versa-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    gap: 3rem;

    h2 {
      font-size: 28px;
      font-weight: 800;
      line-height: 32px;
      margin: 0;
      color: #1a1a1a;
    }

    .checklist {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;

      li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 18px;
        font-weight: 500;

        &::before {
          content: "✓";
          color: var(--vce-primary);
          font-size: 24px;
        }
      }
    }

    .buttons {
      display: flex;
      gap: 1rem;
      margin-top: auto;

      .button {
        flex: 1;
      }
    }
  }

  .why-versa-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    .quickbooks-image {
      max-width: 100%;
      margin-top: -65px;
    }
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .why-versa-content {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
    }

    .why-versa-left {
      flex: none;
      width: 100%;
      text-align: center;
      align-items: center;

      .buttons {
        max-width: 400px;
        width: 100%;
      }
    }

    .why-versa-right {
      width: 100%;
      min-height: 250px;
    }
  }

  @media (max-width: 768px) {
    padding: 4rem 1rem;

    .why-versa-content {
      padding: 1.5rem;
      gap: 1.5rem;
    }

    .why-versa-left {
      gap: 1.5rem;

      h2 {
        font-size: 24px;
        line-height: 28px;
      }

      .checklist li {
        font-size: 15px;
        line-height: 22px;
      }

      .buttons {
        flex-direction: column;
        gap: 0.75rem;
      }
    }

    .why-versa-right {
      min-height: 200px;
    }
  }

  /* Reviews Section */
  .reviews {
    margin-top: 5rem;
    width: 100%;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
  }

  .review-card {
    background: white;
    border: 1px solid var(--vce-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: var(--vce-primary);
    }
  }

  .stars {
    display: flex;
    gap: 4px;
  }

  .star {
    color: #FECD08;
    font-size: 25px;
    line-height: 1;
  }

  .review-text {
    font-size: 16px;
    line-height: 24px !important;
    margin: 0;
    flex: 1;
    color: #1a1a1a;
  }

  .reviewer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
  }

  .reviewer-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
  }

  .reviewer-company {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
  }

  /* Responsive Design for Reviews */
  @media (max-width: 1024px) {
    .reviews-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .review-card {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .reviews {
      margin-top: 3rem;
    }

    .reviews-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .review-card {
      padding: 1.5rem;
      gap: 1rem;
    }

    .review-text {
      font-size: 15px;
      line-height: 22px !important;
    }

    .reviewer-name {
      font-size: 16px;
    }
  }
}




/*============================*/
/* VIDEO MODAL                 */
/*============================*/
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  width: 1000px;
  position: relative;
  animation: slideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes slideIn {
  from {
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-header {
  position: relative;
  padding: 20px 20px 0 20px;
  display: flex;
  justify-content: flex-end;
  border: none;
}

.close-modal {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 28px;
  font-weight: 300;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}

.modal-body {
  max-height: fit-content;
}

.modal-body video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modal-body iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Modal */
@media (max-width: 1024px) {
  .modal-content {
    width: 95vw;
    max-width: 95vw;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    max-width: 95vw;
    max-height: 95vh;
  }

  .modal-header {
    padding: 15px 15px 0 15px;
  }

  .modal-body {
    padding: 0 15px 15px 15px;
  }

  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  .modal-body iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98vw;
    max-width: 98vw;
    max-height: 98vh;
    border-radius: 12px;
  }

  .modal-header {
    padding: 10px 10px 0 10px;
  }

  .modal-body {
    padding: 0 10px 10px 10px;
  }

  .modal-body video {
    border-radius: 8px;
  }

  .modal-body iframe {
    height: 250px;
    border-radius: 8px;
  }
}

/*============================*/
/* COMPARISON SECTION          */
/*============================*/
.comparison {
  padding: 6rem 1rem;
}

.comparison-table {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--vce-border);
  background: white;
  margin-top: 3rem;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #DAE0ED;
}

.feature-header,
.platform-header {
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.feature-header {
  text-align: left;
  justify-content: flex-start;
  background: #e9ecef;
  font-size: 18px;
}

.platform-header.highlighted {
  background: rgba(var(--versa-erp), 0.06);
  color: var(--vce-primary);
  position: relative;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #DAE0ED;
  transition: background-color 0.2s ease;
}

.comparison-row:hover {
  background: #f8f9fa;
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-name {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 16px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
}

.feature-value {
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-value:last-child {
  border-right: none;
}

.feature-value.highlighted {
  background: rgba(var(--versa-erp), 0.06);
}

.check {
  color: rgb(var(--versa-erp));
  font-size: 24px;
  font-weight: 700;
}

.cross {
  color: #A0A0A0;
  font-size: 20px;
  font-weight: 700;
}

.limited {
  color: #A0A0A0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design for Comparison Table */
@media (max-width: 1200px) {

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr;
  }

  .feature-header,
  .platform-header {
    padding: 1.2rem 0.8rem;
    font-size: 14px;
  }

  .feature-name {
    padding: 1.2rem 0.8rem;
    font-size: 14px;
  }

  .feature-value {
    padding: 1.2rem 0.8rem;
  }
}

@media (max-width: 1024px) {
  .comparison-table {
    font-size: 14px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
  }

  .feature-header,
  .platform-header {
    padding: 1rem 0.6rem;
    font-size: 13px;
  }

  .feature-name {
    padding: 1rem 0.6rem;
    font-size: 13px;
  }

  .feature-value {
    padding: 1rem 0.6rem;
  }

  .check {
    font-size: 20px;
  }

  .cross {
    font-size: 18px;
  }

  .limited {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .comparison {
    padding: 4rem 1rem;
  }

  .comparison-table {
    margin-top: 2rem;
    border-radius: 12px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
  }

  .feature-header,
  .platform-header {
    padding: 0.8rem 0.4rem;
    font-size: 11px;
  }

  .feature-name {
    padding: 0.8rem 0.4rem;
    font-size: 12px;
  }

  .feature-value {
    padding: 0.8rem 0.4rem;
  }

  .check {
    font-size: 18px;
  }

  .cross {
    font-size: 16px;
  }

  .limited {
    font-size: 10px;
  }
}

@media (max-width: 640px) {

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr 0.7fr 0.7fr;
  }

  .feature-header,
  .platform-header {
    padding: 0.6rem 0.2rem;
    font-size: 10px;
  }

  .feature-name {
    padding: 0.6rem 0.2rem;
    font-size: 11px;
  }

  .feature-value {
    padding: 0.6rem 0.2rem;
  }

  .check {
    font-size: 16px;
  }

  .cross {
    font-size: 14px;
  }

  .limited {
    font-size: 9px;
  }
}

/*============================*/
/* ACTION SECTION             */
/*============================*/
.section-action {
  background-image: url('/wp-content/themes/versaccounts/assets/images/products/action-bg.jpg');
  background-position: center;
  background-size: cover;
  padding: 4rem 1rem;
}

.section-action .section-wrapper {
  gap: 50px;
}

.section-action h2,
.section-action p {
  color: var(--vce-default-white);
}

.section-action img {
  max-height: 104px;
}